instance_id
stringclasses
11 values
text
stringclasses
11 values
repo
stringclasses
4 values
base_commit
stringclasses
11 values
problem_statement
stringclasses
10 values
hints_text
stringclasses
8 values
created_at
stringclasses
11 values
patch
stringclasses
10 values
test_patch
stringclasses
10 values
version
stringclasses
2 values
FAIL_TO_PASS
stringclasses
1 value
PASS_TO_PASS
stringclasses
1 value
environment_setup_commit
stringclasses
1 value
input_ids
sequencelengths
5.88k
245k
labels
sequencelengths
5.88k
245k
mixpanel__mixpanel-python-64
You will be provided with a partial code base and an issue statement explaining a problem to resolve. <issue> flush function for Buffered Consumer not working Hi, in class BufferedConsumer the flush function in line 338 should change to def flush (self,api_key=None) and then in line 444-445 should change to: for endpoint in self._buffers.keys(): self._flush_endpoint(endpoint,api_key=api_key) </issue> <code> [start of README.rst] 1 mixpanel-python |travis-badge| 2 ============================== 3 4 This is the official Mixpanel Python library. This library allows for 5 server-side integration of Mixpanel. 6 7 8 Installation 9 ------------ 10 11 The library can be installed using pip:: 12 13 pip install mixpanel 14 15 16 Getting Started 17 --------------- 18 19 Typical usage usually looks like this:: 20 21 from mixpanel import Mixpanel 22 23 mp = Mixpanel(YOUR_TOKEN) 24 25 # tracks an event with certain properties 26 mp.track(DISTINCT_ID, 'button clicked', {'color' : 'blue', 'size': 'large'}) 27 28 # sends an update to a user profile 29 mp.people_set(DISTINCT_ID, {'$first_name' : 'Ilya', 'favorite pizza': 'margherita'}) 30 31 You can use an instance of the Mixpanel class for sending all of your events 32 and people updates. 33 34 35 Additional Information 36 ---------------------- 37 38 * `Help Docs`_ 39 * `Full Documentation`_ 40 * mixpanel-python-async_; a third party tool for sending data asynchronously 41 from the tracking python process. 42 43 44 .. |travis-badge| image:: https://travis-ci.org/mixpanel/mixpanel-python.svg?branch=master 45 :target: https://travis-ci.org/mixpanel/mixpanel-python 46 .. _Help Docs: https://www.mixpanel.com/help/reference/python 47 .. _Full Documentation: http://mixpanel.github.io/mixpanel-python/ 48 .. _mixpanel-python-async: https://github.com/jessepollak/mixpanel-python-async 49 [end of README.rst] [start of mixpanel/__init__.py] 1 # -*- coding: utf-8 -*- 2 """This is the official Mixpanel client library for Python. 3 4 Mixpanel client libraries allow for tracking events and setting properties on 5 People Analytics profiles from your server-side projects. This is the API 6 documentation; you may also be interested in the higher-level `usage 7 documentation`_. If your users are interacting with your application via the 8 web, you may also be interested in our `JavaScript library`_. 9 10 .. _`Javascript library`: https://mixpanel.com/help/reference/javascript 11 .. _`usage documentation`: https://mixpanel.com/help/reference/python 12 13 :class:`~.Mixpanel` is the primary class for tracking events and sending People 14 Analytics updates. :class:`~.Consumer` and :class:`~.BufferedConsumer` allow 15 callers to customize the IO characteristics of their tracking. 16 """ 17 from __future__ import absolute_import, unicode_literals 18 import base64 19 import datetime 20 import json 21 import time 22 23 import six 24 from six.moves import urllib 25 26 __version__ = '4.3.1' 27 VERSION = __version__ # TODO: remove when bumping major version. 28 29 30 class DatetimeSerializer(json.JSONEncoder): 31 def default(self, obj): 32 if isinstance(obj, datetime.datetime): 33 fmt = '%Y-%m-%dT%H:%M:%S' 34 return obj.strftime(fmt) 35 36 return json.JSONEncoder.default(self, obj) 37 38 39 def json_dumps(data, cls=None): 40 # Separators are specified to eliminate whitespace. 41 return json.dumps(data, separators=(',', ':'), cls=cls) 42 43 44 class Mixpanel(object): 45 """Instances of Mixpanel are used for all events and profile updates. 46 47 :param str token: your project's Mixpanel token 48 :param consumer: can be used to alter the behavior of tracking (default 49 :class:`~.Consumer`) 50 :param json.JSONEncoder serializer: a JSONEncoder subclass used to handle 51 JSON serialization (default :class:`~.DatetimeSerializer`) 52 53 See `Built-in consumers`_ for details about the consumer interface. 54 55 .. versionadded:: 4.2.0 56 The *serializer* parameter. 57 """ 58 59 def __init__(self, token, consumer=None, serializer=DatetimeSerializer): 60 self._token = token 61 self._consumer = consumer or Consumer() 62 self._serializer = serializer 63 64 def _now(self): 65 return time.time() 66 67 def track(self, distinct_id, event_name, properties=None, meta=None): 68 """Record an event. 69 70 :param str distinct_id: identifies the user triggering the event 71 :param str event_name: a name describing the event 72 :param dict properties: additional data to record; keys should be 73 strings, and values should be strings, numbers, or booleans 74 :param dict meta: overrides Mixpanel special properties 75 76 ``properties`` should describe the circumstances of the event, or 77 aspects of the source or user associated with it. ``meta`` is used 78 (rarely) to override special values sent in the event object. 79 """ 80 all_properties = { 81 'token': self._token, 82 'distinct_id': distinct_id, 83 'time': int(self._now()), 84 'mp_lib': 'python', 85 '$lib_version': __version__, 86 } 87 if properties: 88 all_properties.update(properties) 89 event = { 90 'event': event_name, 91 'properties': all_properties, 92 } 93 if meta: 94 event.update(meta) 95 self._consumer.send('events', json_dumps(event, cls=self._serializer)) 96 97 def import_data(self, api_key, distinct_id, event_name, timestamp, 98 properties=None, meta=None): 99 """Record an event that occured more than 5 days in the past. 100 101 :param str api_key: your Mixpanel project's API key 102 :param str distinct_id: identifies the user triggering the event 103 :param str event_name: a name describing the event 104 :param int timestamp: UTC seconds since epoch 105 :param dict properties: additional data to record; keys should be 106 strings, and values should be strings, numbers, or booleans 107 :param dict meta: overrides Mixpanel special properties 108 109 To avoid accidentally recording invalid events, the Mixpanel API's 110 ``track`` endpoint disallows events that occurred too long ago. This 111 method can be used to import such events. See our online documentation 112 for `more details 113 <https://mixpanel.com/docs/api-documentation/importing-events-older-than-31-days>`__. 114 """ 115 all_properties = { 116 'token': self._token, 117 'distinct_id': distinct_id, 118 'time': int(timestamp), 119 'mp_lib': 'python', 120 '$lib_version': __version__, 121 } 122 if properties: 123 all_properties.update(properties) 124 event = { 125 'event': event_name, 126 'properties': all_properties, 127 } 128 if meta: 129 event.update(meta) 130 self._consumer.send('imports', json_dumps(event, cls=self._serializer), api_key) 131 132 def alias(self, alias_id, original, meta=None): 133 """Apply a custom alias to a people record. 134 135 :param str alias_id: the new distinct_id 136 :param str original: the previous distinct_id 137 :param dict meta: overrides Mixpanel special properties 138 139 Immediately creates a one-way mapping between two ``distinct_ids``. 140 Events triggered by the new id will be associated with the existing 141 user's profile and behavior. See our online documentation for `more 142 details 143 <https://mixpanel.com/docs/integration-libraries/using-mixpanel-alias>`__. 144 145 .. note:: 146 Calling this method *always* results in a synchronous HTTP request 147 to Mixpanel servers, regardless of any custom consumer. 148 """ 149 sync_consumer = Consumer() 150 event = { 151 'event': '$create_alias', 152 'properties': { 153 'distinct_id': original, 154 'alias': alias_id, 155 'token': self._token, 156 }, 157 } 158 if meta: 159 event.update(meta) 160 sync_consumer.send('events', json_dumps(event, cls=self._serializer)) 161 162 def people_set(self, distinct_id, properties, meta=None): 163 """Set properties of a people record. 164 165 :param str distinct_id: the profile to update 166 :param dict properties: properties to set 167 :param dict meta: overrides Mixpanel `special properties`_ 168 169 .. _`special properties`: https://mixpanel.com/help/reference/http#people-analytics-updates 170 171 If the profile does not exist, creates a new profile with these properties. 172 """ 173 return self.people_update({ 174 '$distinct_id': distinct_id, 175 '$set': properties, 176 }, meta=meta or {}) 177 178 def people_set_once(self, distinct_id, properties, meta=None): 179 """Set properties of a people record if they are not already set. 180 181 :param str distinct_id: the profile to update 182 :param dict properties: properties to set 183 184 Any properties that already exist on the profile will not be 185 overwritten. If the profile does not exist, creates a new profile with 186 these properties. 187 """ 188 return self.people_update({ 189 '$distinct_id': distinct_id, 190 '$set_once': properties, 191 }, meta=meta or {}) 192 193 def people_increment(self, distinct_id, properties, meta=None): 194 """Increment/decrement numerical properties of a people record. 195 196 :param str distinct_id: the profile to update 197 :param dict properties: properties to increment/decrement; values 198 should be numeric 199 200 Adds numerical values to properties of a people record. Nonexistent 201 properties on the record default to zero. Negative values in 202 ``properties`` will decrement the given property. 203 """ 204 return self.people_update({ 205 '$distinct_id': distinct_id, 206 '$add': properties, 207 }, meta=meta or {}) 208 209 def people_append(self, distinct_id, properties, meta=None): 210 """Append to the list associated with a property. 211 212 :param str distinct_id: the profile to update 213 :param dict properties: properties to append 214 215 Adds items to list-style properties of a people record. Appending to 216 nonexistent properties results in a list with a single element. For 217 example:: 218 219 mp.people_append('123', {'Items': 'Super Arm'}) 220 """ 221 return self.people_update({ 222 '$distinct_id': distinct_id, 223 '$append': properties, 224 }, meta=meta or {}) 225 226 def people_union(self, distinct_id, properties, meta=None): 227 """Merge the values of a list associated with a property. 228 229 :param str distinct_id: the profile to update 230 :param dict properties: properties to merge 231 232 Merges list values in ``properties`` with existing list-style 233 properties of a people record. Duplicate values are ignored. For 234 example:: 235 236 mp.people_union('123', {'Items': ['Super Arm', 'Fire Storm']}) 237 """ 238 return self.people_update({ 239 '$distinct_id': distinct_id, 240 '$union': properties, 241 }, meta=meta or {}) 242 243 def people_unset(self, distinct_id, properties, meta=None): 244 """Permanently remove properties from a people record. 245 246 :param str distinct_id: the profile to update 247 :param list properties: property names to remove 248 """ 249 return self.people_update({ 250 '$distinct_id': distinct_id, 251 '$unset': properties, 252 }, meta=meta) 253 254 def people_delete(self, distinct_id, meta=None): 255 """Permanently delete a people record. 256 257 :param str distinct_id: the profile to delete 258 """ 259 return self.people_update({ 260 '$distinct_id': distinct_id, 261 '$delete': "", 262 }, meta=meta or None) 263 264 def people_track_charge(self, distinct_id, amount, 265 properties=None, meta=None): 266 """Track a charge on a people record. 267 268 :param str distinct_id: the profile with which to associate the charge 269 :param numeric amount: number of dollars charged 270 :param dict properties: extra properties related to the transaction 271 272 Record that you have charged the current user a certain amount of 273 money. Charges recorded with this way will appear in the Mixpanel 274 revenue report. 275 """ 276 if properties is None: 277 properties = {} 278 properties.update({'$amount': amount}) 279 return self.people_append( 280 distinct_id, {'$transactions': properties or {}}, meta=meta or {} 281 ) 282 283 def people_clear_charges(self, distinct_id, meta=None): 284 """Permanently clear all charges on a people record. 285 286 :param str distinct_id: the profile whose charges will be cleared 287 """ 288 return self.people_unset( 289 distinct_id, ["$transactions"], meta=meta or {}, 290 ) 291 292 def people_update(self, message, meta=None): 293 """Send a generic update to Mixpanel people analytics. 294 295 :param dict message: the message to send 296 297 Callers are responsible for formatting the update message as documented 298 in the `Mixpanel HTTP specification`_. This method may be useful if you 299 want to use very new or experimental features of people analytics, but 300 please use the other ``people_*`` methods where possible. 301 302 .. _`Mixpanel HTTP specification`: https://mixpanel.com/help/reference/http 303 """ 304 record = { 305 '$token': self._token, 306 '$time': int(self._now() * 1000), 307 } 308 record.update(message) 309 if meta: 310 record.update(meta) 311 self._consumer.send('people', json_dumps(record, cls=self._serializer)) 312 313 314 class MixpanelException(Exception): 315 """Raised by consumers when unable to send messages. 316 317 This could be caused by a network outage or interruption, or by an invalid 318 endpoint passed to :meth:`.Consumer.send`. 319 """ 320 pass 321 322 323 class Consumer(object): 324 """ 325 A consumer that sends an HTTP request directly to the Mixpanel service, one 326 per call to :meth:`~.send`. 327 328 :param str events_url: override the default events API endpoint 329 :param str people_url: override the default people API endpoint 330 :param str import_url: override the default import API endpoint 331 :param int request_timeout: connection timeout in seconds 332 """ 333 334 def __init__(self, events_url=None, people_url=None, import_url=None, request_timeout=None): 335 self._endpoints = { 336 'events': events_url or 'https://api.mixpanel.com/track', 337 'people': people_url or 'https://api.mixpanel.com/engage', 338 'imports': import_url or 'https://api.mixpanel.com/import', 339 } 340 self._request_timeout = request_timeout 341 342 def send(self, endpoint, json_message, api_key=None): 343 """Immediately record an event or a profile update. 344 345 :param endpoint: the Mixpanel API endpoint appropriate for the message 346 :type endpoint: "events" | "people" | "imports" 347 :param str json_message: a JSON message formatted for the endpoint 348 :raises MixpanelException: if the endpoint doesn't exist, the server is 349 unreachable, or the message cannot be processed 350 """ 351 if endpoint in self._endpoints: 352 self._write_request(self._endpoints[endpoint], json_message, api_key) 353 else: 354 raise MixpanelException('No such endpoint "{0}". Valid endpoints are one of {1}'.format(endpoint, self._endpoints.keys())) 355 356 def _write_request(self, request_url, json_message, api_key=None): 357 data = { 358 'data': base64.b64encode(json_message.encode('utf8')), 359 'verbose': 1, 360 'ip': 0, 361 } 362 if api_key: 363 data.update({'api_key': api_key}) 364 encoded_data = urllib.parse.urlencode(data).encode('utf8') 365 try: 366 request = urllib.request.Request(request_url, encoded_data) 367 368 # Note: We don't send timeout=None here, because the timeout in urllib2 defaults to 369 # an internal socket timeout, not None. 370 if self._request_timeout is not None: 371 response = urllib.request.urlopen(request, timeout=self._request_timeout).read() 372 else: 373 response = urllib.request.urlopen(request).read() 374 except urllib.error.URLError as e: 375 six.raise_from(MixpanelException(e), e) 376 377 try: 378 response = json.loads(response.decode('utf8')) 379 except ValueError: 380 raise MixpanelException('Cannot interpret Mixpanel server response: {0}'.format(response)) 381 382 if response['status'] != 1: 383 raise MixpanelException('Mixpanel error: {0}'.format(response['error'])) 384 385 return True 386 387 388 class BufferedConsumer(object): 389 """ 390 A consumer that maintains per-endpoint buffers of messages and then sends 391 them in batches. This can save bandwidth and reduce the total amount of 392 time required to post your events to Mixpanel. 393 394 .. note:: 395 Because :class:`~.BufferedConsumer` holds events, you need to call 396 :meth:`~.flush` when you're sure you're done sending them—for example, 397 just before your program exits. Calls to :meth:`~.flush` will send all 398 remaining unsent events being held by the instance. 399 400 :param int max_size: number of :meth:`~.send` calls for a given endpoint to 401 buffer before flushing automatically 402 :param str events_url: override the default events API endpoint 403 :param str people_url: override the default people API endpoint 404 :param str import_url: override the default import API endpoint 405 :param int request_timeout: connection timeout in seconds 406 """ 407 def __init__(self, max_size=50, events_url=None, people_url=None, import_url=None, request_timeout=None): 408 self._consumer = Consumer(events_url, people_url, import_url, request_timeout) 409 self._buffers = { 410 'events': [], 411 'people': [], 412 'imports': [], 413 } 414 self._max_size = min(50, max_size) 415 416 def send(self, endpoint, json_message, api_key=None): 417 """Record an event or profile update. 418 419 Internally, adds the message to a buffer, and then flushes the buffer 420 if it has reached the configured maximum size. Note that exceptions 421 raised may have been caused by a message buffered by an earlier call to 422 :meth:`~.send`. 423 424 :param endpoint: the Mixpanel API endpoint appropriate for the message 425 :type endpoint: "events" | "people" | "imports" 426 :param str json_message: a JSON message formatted for the endpoint 427 :raises MixpanelException: if the endpoint doesn't exist, the server is 428 unreachable, or any buffered message cannot be processed 429 """ 430 if endpoint not in self._buffers: 431 raise MixpanelException('No such endpoint "{0}". Valid endpoints are one of {1}'.format(endpoint, self._buffers.keys())) 432 433 buf = self._buffers[endpoint] 434 buf.append(json_message) 435 if len(buf) >= self._max_size: 436 self._flush_endpoint(endpoint, api_key) 437 438 def flush(self): 439 """Immediately send all buffered messages to Mixpanel. 440 441 :raises MixpanelException: if the server is unreachable or any buffered 442 message cannot be processed 443 """ 444 for endpoint in self._buffers.keys(): 445 self._flush_endpoint(endpoint) 446 447 def _flush_endpoint(self, endpoint, api_key=None): 448 buf = self._buffers[endpoint] 449 while buf: 450 batch = buf[:self._max_size] 451 batch_json = '[{0}]'.format(','.join(batch)) 452 try: 453 self._consumer.send(endpoint, batch_json, api_key) 454 except MixpanelException as orig_e: 455 mp_e = MixpanelException(orig_e) 456 mp_e.message = batch_json 457 mp_e.endpoint = endpoint 458 six.raise_from(mp_e, orig_e) 459 buf = buf[self._max_size:] 460 self._buffers[endpoint] = buf 461 [end of mixpanel/__init__.py] </code> Here is an example of a patch file. It consists of changes to the code base. It specifies the file names, the line numbers of each change, and the removed and added lines. A single patch file can contain changes to multiple files. <patch> --- a/file.py +++ b/file.py @@ -1,27 +1,35 @@ def euclidean(a, b): - while b: - a, b = b, a % b - return a + if b == 0: + return a + return euclidean(b, a % b) def bresenham(x0, y0, x1, y1): points = [] dx = abs(x1 - x0) dy = abs(y1 - y0) - sx = 1 if x0 < x1 else -1 - sy = 1 if y0 < y1 else -1 - err = dx - dy + x, y = x0, y0 + sx = -1 if x0 > x1 else 1 + sy = -1 if y0 > y1 else 1 - while True: - points.append((x0, y0)) - if x0 == x1 and y0 == y1: - break - e2 = 2 * err - if e2 > -dy: + if dx > dy: + err = dx / 2.0 + while x != x1: + points.append((x, y)) err -= dy - x0 += sx - if e2 < dx: - err += dx - y0 += sy + if err < 0: + y += sy + err += dx + x += sx + else: + err = dy / 2.0 + while y != y1: + points.append((x, y)) + err -= dx + if err < 0: + x += sx + err += dy + y += sy + points.append((x, y)) return points </patch> I need you to solve the provided issue by generating a single patch file that I can apply directly to this repository using git apply. Please respond with a single patch file in the format shown above. Respond below: (...TRUNCATED)
mixpanel/mixpanel-python
40c98e0b285898384cc4aa6cc803d8d0f46f6218
flush function for Buffered Consumer not working Hi, in class BufferedConsumer the flush function in line 338 should change to def flush (self,api_key=None) and then in line 444-445 should change to: for endpoint in self._buffers.keys(): self._flush_endpoint(endpoint,api_key=api_key) (...TRUNCATED)
+1 I have the same issue. The exception is: "Mixpanel error: token, missing or empty" because of this bug. +1 I also just ran into this. Is it worth submitting a PR for this? I see 3 unmerged PRs that are a few years old.(...TRUNCATED)
2016-12-22T00:07:05Z
<patch> diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py --- a/mixpanel/__init__.py +++ b/mixpanel/__init__.py @@ -345,6 +345,7 @@ def send(self, endpoint, json_message, api_key=None): :param endpoint: the Mixpanel API endpoint appropriate for the message :type endpoint: "events" | "people" | "imports" :param str json_message: a JSON message formatted for the endpoint + :param str api_key: your Mixpanel project's API key :raises MixpanelException: if the endpoint doesn't exist, the server is unreachable, or the message cannot be processed """ @@ -412,6 +413,7 @@ def __init__(self, max_size=50, events_url=None, people_url=None, import_url=Non 'imports': [], } self._max_size = min(50, max_size) + self._api_key = None def send(self, endpoint, json_message, api_key=None): """Record an event or profile update. @@ -424,16 +426,22 @@ def send(self, endpoint, json_message, api_key=None): :param endpoint: the Mixpanel API endpoint appropriate for the message :type endpoint: "events" | "people" | "imports" :param str json_message: a JSON message formatted for the endpoint + :param str api_key: your Mixpanel project's API key :raises MixpanelException: if the endpoint doesn't exist, the server is unreachable, or any buffered message cannot be processed + + .. versionadded:: 4.3.2 + The *api_key* parameter. """ if endpoint not in self._buffers: raise MixpanelException('No such endpoint "{0}". Valid endpoints are one of {1}'.format(endpoint, self._buffers.keys())) buf = self._buffers[endpoint] buf.append(json_message) + if api_key is not None: + self._api_key = api_key if len(buf) >= self._max_size: - self._flush_endpoint(endpoint, api_key) + self._flush_endpoint(endpoint) def flush(self): """Immediately send all buffered messages to Mixpanel. @@ -444,13 +452,13 @@ def flush(self): for endpoint in self._buffers.keys(): self._flush_endpoint(endpoint) - def _flush_endpoint(self, endpoint, api_key=None): + def _flush_endpoint(self, endpoint): buf = self._buffers[endpoint] while buf: batch = buf[:self._max_size] batch_json = '[{0}]'.format(','.join(batch)) try: - self._consumer.send(endpoint, batch_json, api_key) + self._consumer.send(endpoint, batch_json, self._api_key) except MixpanelException as orig_e: mp_e = MixpanelException(orig_e) mp_e.message = batch_json </patch> </s>(...TRUNCATED)
diff --git a/test_mixpanel.py b/test_mixpanel.py --- a/test_mixpanel.py +++ b/test_mixpanel.py @@ -353,40 +353,32 @@ class TestBufferedConsumer: def setup_class(cls): cls.MAX_LENGTH = 10 cls.consumer = mixpanel.BufferedConsumer(cls.MAX_LENGTH) - cls.mock = Mock() - cls.mock.read.return_value = six.b('{"status":1, "error": null}') + cls.consumer._consumer = LogConsumer() + cls.log = cls.consumer._consumer.log - def test_buffer_hold_and_flush(self): - with patch('six.moves.urllib.request.urlopen', return_value=self.mock) as urlopen: - self.consumer.send('events', '"Event"') - assert not self.mock.called - self.consumer.flush() + def setup_method(self): + del self.log[:] - assert urlopen.call_count == 1 - - (call_args, kwargs) = urlopen.call_args - (request,) = call_args - timeout = kwargs.get('timeout', None) - - assert request.get_full_url() == 'https://api.mixpanel.com/track' - assert qs(request.data) == qs('ip=0&data=WyJFdmVudCJd&verbose=1') - assert timeout is None + def test_buffer_hold_and_flush(self): + self.consumer.send('events', '"Event"') + assert len(self.log) == 0 + self.consumer.flush() + assert self.log == [('events', ['Event'])] def test_buffer_fills_up(self): - with patch('six.moves.urllib.request.urlopen', return_value=self.mock) as urlopen: - for i in range(self.MAX_LENGTH - 1): - self.consumer.send('events', '"Event"') - assert not self.mock.called - - self.consumer.send('events', '"Last Event"') + for i in range(self.MAX_LENGTH - 1): + self.consumer.send('events', '"Event"') + assert len(self.log) == 0 - assert urlopen.call_count == 1 - ((request,), _) = urlopen.call_args - assert request.get_full_url() == 'https://api.mixpanel.com/track' - assert qs(request.data) == \ - qs('ip=0&data=WyJFdmVudCIsIkV2ZW50IiwiRXZlbnQiLCJFdmVudCIsIkV2ZW50IiwiRXZlbnQiLCJFdmVudCIsIkV2ZW50IiwiRXZlbnQiLCJMYXN0IEV2ZW50Il0%3D&verbose=1') + self.consumer.send('events', '"Last Event"') + assert len(self.log) == 1 + assert self.log == [('events', [ + 'Event', 'Event', 'Event', 'Event', 'Event', + 'Event', 'Event', 'Event', 'Event', 'Last Event', + ])] - def test_unknown_endpoint(self): + def test_unknown_endpoint_raises_on_send(self): + # Ensure the exception isn't hidden until a flush. with pytest.raises(mixpanel.MixpanelException): self.consumer.send('unknown', '1') @@ -394,17 +386,19 @@ def test_useful_reraise_in_flush_endpoint(self): error_mock = Mock() error_mock.read.return_value = six.b('{"status": 0, "error": "arbitrary error"}') broken_json = '{broken JSON' + consumer = mixpanel.BufferedConsumer(2) with patch('six.moves.urllib.request.urlopen', return_value=error_mock): - self.consumer.send('events', broken_json) + consumer.send('events', broken_json) with pytest.raises(mixpanel.MixpanelException) as excinfo: - self.consumer.flush() + consumer.flush() assert excinfo.value.message == '[%s]' % broken_json assert excinfo.value.endpoint == 'events' - def test_import_data_receives_api_key(self): - # Ensure BufferedConsumer.send accepts the API_KEY parameter needed for - # import_data; see #62. + def test_send_remembers_api_key(self): self.consumer.send('imports', '"Event"', api_key='MY_API_KEY') + assert len(self.log) == 0 + self.consumer.flush() + assert self.log == [('imports', ['Event'], 'MY_API_KEY')] class TestFunctional: (...TRUNCATED)
4.3
887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,15118,29958,13,23126,740,363,22217,2138,4680,451,1985,13,18567,29892,13,262,770,22217,13696,4680,278,28371,740,297,1196,29871,29941,29941,29947,881,1735,304,29871,13,1753,28371,313,1311,29892,2754,29918,1989,29922,8516,29897,29871,13,13,392,769,297,1196,29871,29946,29946,29946,29899,29946,29946,29945,881,1735,304,29901,13,4706,363,16248,297,1583,3032,28040,414,29889,8149,7295,13,9651,1583,3032,23126,29918,29734,29898,29734,29892,2754,29918,1989,29922,2754,29918,1989,29897,13,13,13,829,15118,29958,13,13,29966,401,29958,13,29961,2962,310,5195,3035,2303,29889,29878,303,29962,13,29896,6837,15119,29899,4691,891,3018,1730,29899,12313,479,29989,13,29906,1275,9166,4936,2751,13,29941,29871,13,29946,910,338,278,6221,23478,15119,5132,3489,29889,910,3489,6511,363,13,29945,1923,29899,2975,13465,310,23478,15119,29889,13,29953,29871,13,29955,29871,13,29947,16052,362,13,29929,448,1378,5634,13,29896,29900,29871,13,29896,29896,450,3489,508,367,5130,773,8450,1057,13,29896,29906,29871,13,29896,29941,268,8450,2601,6837,15119,13,29896,29946,29871,13,29896,29945,29871,13,29896,29953,24162,7370,287,13,29896,29955,448,9072,489,13,29896,29947,29871,13,29896,29929,14213,936,8744,5491,3430,763,445,1057,13,29906,29900,29871,13,29906,29896,268,515,6837,15119,1053,23478,15119,13,29906,29906,29871,13,29906,29941,268,22326,353,23478,15119,29898,29979,22970,29918,4986,29968,1430,29897,13,29906,29946,29871,13,29906,29945,268,396,16257,385,1741,411,3058,4426,13,29906,29953,268,22326,29889,11294,29898,4571,1254,28852,29918,1367,29892,525,3092,11484,742,11117,2780,29915,584,525,9539,742,525,2311,2396,525,16961,29915,1800,13,29906,29955,29871,13,29906,29947,268,396,16003,385,2767,304,263,1404,8722,13,29906,29929,268,22326,29889,25719,29918,842,29898,4571,1254,28852,29918,1367,29892,11117,29938,4102,29918,978,29915,584,525,29902,368,29874,742,525,29888,17118,568,282,24990,2396,525,29885,1191,2276,2028,29915,1800,13,29941,29900,29871,13,29941,29896,887,508,671,385,2777,310,278,23478,15119,770,363,9348,599,310,596,4959,13,29941,29906,322,2305,11217,29889,13,29941,29941,29871,13,29941,29946,29871,13,29941,29945,3462,3245,10343,13,29941,29953,448,2683,23648,13,29941,29955,29871,13,29941,29947,334,421,29648,360,12332,29952,29918,13,29941,29929,334,421,13658,10854,362,29952,29918,13,29946,29900,334,6837,15119,29899,4691,29899,12674,16141,263,4654,6263,5780,363,9348,848,408,9524,5794,13,29946,29896,259,515,278,23110,3017,1889,29889,13,29946,29906,29871,13,29946,29941,29871,13,29946,29946,6317,891,3018,1730,29899,12313,479,29989,1967,1057,2045,597,3018,1730,29899,455,29889,990,29914,28084,15119,29914,28084,15119,29899,4691,29889,15120,29973,17519,29922,6207,13,29946,29945,268,584,5182,29901,2045,597,3018,1730,29899,455,29889,990,29914,28084,15119,29914,28084,15119,29899,4691,13,29946,29953,6317,903,29648,360,12332,29901,2045,597,1636,29889,28084,15119,29889,510,29914,8477,29914,5679,29914,4691,13,29946,29955,6317,903,13658,10854,362,29901,1732,597,28084,15119,29889,3292,29889,601,29914,28084,15119,29899,4691,29914,13,29946,29947,6317,903,28084,15119,29899,4691,29899,12674,29901,2045,597,3292,29889,510,29914,29926,5340,3733,18170,29914,28084,15119,29899,4691,29899,12674,13,29946,29929,29871,13,29961,355,310,5195,3035,2303,29889,29878,303,29962,13,29961,2962,310,6837,15119,29914,1649,2344,26914,2272,29962,13,29896,396,448,29930,29899,14137,29901,23616,29899,29947,448,29930,29899,13,29906,9995,4013,338,278,6221,23478,15119,3132,3489,363,5132,29889,13,29941,29871,13,29946,23478,15119,3132,9562,2758,363,23110,4959,322,4444,4426,373,13,29945,11647,11597,22026,28723,515,596,1923,29899,2975,9279,29889,910,338,278,3450,13,29953,5106,29936,366,1122,884,367,8852,297,278,6133,29899,5563,421,21125,13,29955,5106,29952,5396,960,596,4160,526,16254,292,411,596,2280,3025,278,13,29947,1856,29892,366,1122,884,367,8852,297,1749,421,16963,3489,29952,5396,13,29929,29871,13,29896,29900,6317,903,29952,29967,2516,3489,6998,2045,597,28084,15119,29889,510,29914,8477,29914,5679,29914,7729,13,29896,29896,6317,903,29952,21125,5106,6998,2045,597,28084,15119,29889,510,29914,8477,29914,5679,29914,4691,13,29896,29906,29871,13,29896,29941,584,1990,18078,30022,29889,29924,861,15119,29952,338,278,7601,770,363,23110,4959,322,9348,11647,13,29896,29946,11597,22026,11217,29889,584,1990,18078,30022,29889,13696,4680,29952,322,584,1990,18078,30022,29889,7701,287,13696,4680,29952,2758,13,29896,29945,1246,414,304,2888,675,278,10663,21862,310,1009,23110,29889,13,29896,29953,9995,13,29896,29955,515,4770,29888,9130,1649,1053,8380,29918,5215,29892,29104,29918,20889,1338,13,29896,29947,1053,2967,29953,29946,13,29896,29929,1053,12865,13,29906,29900,1053,4390,13,29906,29896,1053,931,13,29906,29906,29871,13,29906,29941,1053,4832,13,29906,29946,515,4832,29889,13529,267,1053,3142,1982,13,29906,29945,29871,13,29906,29953,4770,3259,1649,353,525,29946,29889,29941,29889,29896,29915,13,29906,29955,478,1001,13381,353,4770,3259,1649,29871,396,14402,29901,3349,746,289,3427,292,4655,1873,29889,13,29906,29947,29871,13,29906,29929,29871,13,29941,29900,770,13373,5410,17679,29898,3126,29889,7249,8566,6119,1125,13,29941,29896,268,822,2322,29898,1311,29892,5446,1125,13,29941,29906,308,565,338,8758,29898,5415,29892,12865,29889,12673,1125,13,29941,29941,632,19200,353,14210,29979,19222,29885,19222,29881,29911,29995,29950,16664,29924,16664,29903,29915,13,29941,29946,632,736,5446,29889,710,615,603,29898,23479,29897,13,29941,29945,29871,13,29941,29953,308,736,4390,29889,7249,8566,6119,29889,4381,29898,1311,29892,5446,29897,13,29941,29955,29871,13,29941,29947,29871,13,29941,29929,822,4390,29918,29881,17204,29898,1272,29892,1067,29879,29922,8516,1125,13,29946,29900,268,396,922,862,4097,526,6790,304,27399,24358,29889,13,29946,29896,268,736,4390,29889,29881,17204,29898,1272,29892,2903,4097,7607,742,742,525,29901,5477,1067,29879,29922,25932,29897,13,29946,29906,29871,13,29946,29941,29871,13,29946,29946,770,23478,15119,29898,3318,1125,13,29946,29945,268,9995,3379,2925,310,23478,15119,526,1304,363,599,4959,322,8722,11217,29889,13,29946,29953,29871,13,29946,29955,268,584,3207,851,5993,29901,596,2060,29915,29879,23478,15119,5993,13,29946,29947,268,584,3207,21691,29901,508,367,1304,304,10551,278,6030,310,23110,313,4381,13,29946,29929,308,584,1990,18078,30022,29889,13696,4680,6348,13,29945,29900,268,584,3207,4390,29889,7249,8566,6119,7797,3950,29901,263,4663,8566,6119,19481,1304,304,4386,13,29945,29896,308,4663,7797,2133,313,4381,584,1990,18078,30022,29889,16390,5410,17679,6348,13,29945,29906,29871,13,29945,29941,268,2823,421,3727,2782,29899,262,11233,414,29952,29918,363,4902,1048,278,21691,5067,29889,13,29945,29946,29871,13,29945,29945,268,6317,1873,23959,1057,29871,29946,29889,29906,29889,29900,13,29945,29953,308,450,334,15550,3950,29930,3443,29889,13,29945,29955,268,9995,13,29945,29947,29871,13,29945,29929,268,822,4770,2344,12035,1311,29892,5993,29892,21691,29922,8516,29892,7797,3950,29922,16390,5410,17679,1125,13,29953,29900,308,1583,3032,6979,353,5993,13,29953,29896,308,1583,3032,25978,261,353,21691,470,2138,4680,580,13,29953,29906,308,1583,3032,15550,3950,353,7797,3950,13,29953,29941,29871,13,29953,29946,268,822,903,3707,29898,1311,1125,13,29953,29945,308,736,931,29889,2230,580,13,29953,29953,29871,13,29953,29955,268,822,5702,29898,1311,29892,8359,29918,333,29892,1741,29918,978,29892,4426,29922,8516,29892,12700,29922,8516,1125,13,29953,29947,308,9995,9182,385,1741,29889,13,29953,29929,29871,13,29955,29900,308,584,3207,851,8359,29918,333,29901,2893,11057,278,1404,7135,292,278,1741,13,29955,29896,308,584,3207,851,1741,29918,978,29901,263,1024,20766,278,1741,13,29955,29906,308,584,3207,9657,4426,29901,5684,848,304,2407,29936,6611,881,367,13,29955,29941,632,6031,29892,322,1819,881,367,6031,29892,3694,29892,470,1045,1772,550,13,29955,29946,308,584,3207,9657,12700,29901,975,24040,23478,15119,4266,4426,13,29955,29945,29871,13,29955,29953,308,4954,11330,16159,881,8453,278,14209,310,278,1741,29892,470,13,29955,29955,308,21420,310,278,2752,470,1404,6942,411,372,29889,4954,7299,16159,338,1304,13,29955,29947,308,313,25983,368,29897,304,5712,4266,1819,2665,297,278,1741,1203,29889,13,29955,29929,308,9995,13,29947,29900,308,599,29918,11330,353,426,13,29947,29896,632,525,6979,2396,1583,3032,6979,29892,13,29947,29906,632,525,5721,5562,29918,333,2396,8359,29918,333,29892,13,29947,29941,632,525,2230,2396,938,29898,1311,3032,3707,25739,13,29947,29946,632,525,1526,29918,1982,2396,525,4691,742,13,29947,29945,632,14180,1982,29918,3259,2396,4770,3259,1649,29892,13,29947,29953,308,500,13,29947,29955,308,565,4426,29901,13,29947,29947,632,599,29918,11330,29889,5504,29898,11330,29897,13,29947,29929,308,1741,353,426,13,29929,29900,632,525,3696,2396,1741,29918,978,29892,13,29929,29896,632,525,11330,2396,599,29918,11330,29892,13,29929,29906,308,500,13,29929,29941,308,565,12700,29901,13,29929,29946,632,1741,29889,5504,29898,7299,29897,13,29929,29945,308,1583,3032,25978,261,29889,6717,877,13604,742,4390,29918,29881,17204,29898,3696,29892,1067,29879,29922,1311,3032,15550,3950,876,13,29929,29953,29871,13,29929,29955,268,822,1053,29918,1272,29898,1311,29892,7882,29918,1989,29892,8359,29918,333,29892,1741,29918,978,29892,14334,29892,13,29929,29947,462,268,4426,29922,8516,29892,12700,29922,8516,1125,13,29929,29929,308,9995,9182,385,1741,393,2179,2955,901,1135,29871,29945,3841,297,278,4940,29889,13,29896,29900,29900,29871,13,29896,29900,29896,308,584,3207,851,7882,29918,1989,29901,596,23478,15119,2060,29915,29879,3450,1820,13,29896,29900,29906,308,584,3207,851,8359,29918,333,29901,2893,11057,278,1404,7135,292,278,1741,13,29896,29900,29941,308,584,3207,851,1741,29918,978,29901,263,1024,20766,278,1741,13,29896,29900,29946,308,584,3207,938,14334,29901,17998,6923,1951,21502,305,13,29896,29900,29945,308,584,3207,9657,4426,29901,5684,848,304,2407,29936,6611,881,367,13,29896,29900,29953,632,6031,29892,322,1819,881,367,6031,29892,3694,29892,470,1045,1772,550,13,29896,29900,29955,308,584,3207,9657,12700,29901,975,24040,23478,15119,4266,4426,13,29896,29900,29947,29871,13,29896,29900,29929,308,1763,4772,11423,635,16867,8340,4959,29892,278,23478,15119,3450,29915,29879,13,29896,29896,29900,308,4954,11294,16159,16248,766,497,1242,4959,393,10761,2086,1472,8020,29889,910,13,29896,29896,29896,308,1158,508,367,1304,304,1053,1316,4959,29889,2823,1749,7395,5106,13,29896,29896,29906,308,363,421,5514,4902,13,29896,29896,29941,308,529,991,597,28084,15119,29889,510,29914,2640,29914,2754,29899,12663,29914,5215,292,29899,13604,29899,3194,29899,27603,29899,29941,29896,29899,16700,13885,26914,13,29896,29896,29946,308,9995,13,29896,29896,29945,308,599,29918,11330,353,426,13,29896,29896,29953,632,525,6979,2396,1583,3032,6979,29892,13,29896,29896,29955,632,525,5721,5562,29918,333,2396,8359,29918,333,29892,13,29896,29896,29947,632,525,2230,2396,938,29898,16394,511,13,29896,29896,29929,632,525,1526,29918,1982,2396,525,4691,742,13,29896,29906,29900,632,14180,1982,29918,3259,2396,4770,3259,1649,29892,13,29896,29906,29896,308,500,13,29896,29906,29906,308,565,4426,29901,13,29896,29906,29941,632,599,29918,11330,29889,5504,29898,11330,29897,13,29896,29906,29946,308,1741,353,426,13,29896,29906,29945,632,525,3696,2396,1741,29918,978,29892,13,29896,29906,29953,632,525,11330,2396,599,29918,11330,29892,13,29896,29906,29955,308,500,13,29896,29906,29947,308,565,12700,29901,13,29896,29906,29929,632,1741,29889,5504,29898,7299,29897,13,29896,29941,29900,308,1583,3032,25978,261,29889,6717,877,326,4011,742,4390,29918,29881,17204,29898,3696,29892,1067,29879,29922,1311,3032,15550,3950,511,7882,29918,1989,29897,13,29896,29941,29896,29871,13,29896,29941,29906,268,822,13995,29898,1311,29892,13995,29918,333,29892,2441,29892,12700,29922,8516,1125,13,29896,29941,29941,308,9995,2052,368,263,2888,13995,304,263,2305,2407,29889,13,29896,29941,29946,29871,13,29896,29941,29945,308,584,3207,851,13995,29918,333,29901,278,716,8359,29918,333,13,29896,29941,29953,308,584,3207,851,2441,29901,278,3517,8359,29918,333,13,29896,29941,29955,308,584,3207,9657,12700,29901,975,24040,23478,15119,4266,4426,13,29896,29941,29947,29871,13,29896,29941,29929,308,1954,4210,2486,10017,263,697,29899,1582,10417,1546,1023,4954,5721,5562,29918,4841,29952,1412,13,29896,29946,29900,308,28488,19799,491,278,716,1178,674,367,6942,411,278,5923,13,29896,29946,29896,308,1404,29915,29879,8722,322,6030,29889,2823,1749,7395,5106,363,421,5514,13,29896,29946,29906,308,4902,13,29896,29946,29941,308,529,991,597,28084,15119,29889,510,29914,2640,29914,27925,29899,492,8464,29914,4746,29899,28084,15119,29899,19973,13885,26914,13,29896,29946,29946,29871,13,29896,29946,29945,308,6317,4443,1057,13,29896,29946,29953,632,8251,292,445,1158,334,21936,29930,2582,297,263,12231,681,7331,2009,13,29896,29946,29955,632,304,23478,15119,12424,29892,17126,310,738,2888,21691,29889,13,29896,29946,29947,308,9995,13,29896,29946,29929,308,16523,29918,25978,261,353,2138,4680,580,13,29896,29945,29900,308,1741,353,426,13,29896,29945,29896,632,525,3696,2396,14180,3258,29918,19973,742,13,29896,29945,29906,632,525,11330,2396,426,13,29896,29945,29941,462,525,5721,5562,29918,333,2396,2441,29892,13,29896,29945,29946,462,525,19973,2396,13995,29918,333,29892,13,29896,29945,29945,462,525,6979,2396,1583,3032,6979,29892,13,29896,29945,29953,632,2981,13,29896,29945,29955,308,500,13,29896,29945,29947,308,565,12700,29901,13,29896,29945,29929,632,1741,29889,5504,29898,7299,29897,13,29896,29953,29900,308,16523,29918,25978,261,29889,6717,877,13604,742,4390,29918,29881,17204,29898,3696,29892,1067,29879,29922,1311,3032,15550,3950,876,13,29896,29953,29896,29871,13,29896,29953,29906,268,822,2305,29918,842,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29896,29953,29941,308,9995,2697,4426,310,263,2305,2407,29889,13,29896,29953,29946,29871,13,29896,29953,29945,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29896,29953,29953,308,584,3207,9657,4426,29901,4426,304,731,13,29896,29953,29955,308,584,3207,9657,12700,29901,975,24040,23478,15119,421,18732,4426,29952,29918,13,29896,29953,29947,29871,13,29896,29953,29929,308,6317,903,29952,18732,4426,6998,2045,597,28084,15119,29889,510,29914,8477,29914,5679,29914,1124,29937,25719,29899,7054,22026,29899,786,15190,13,29896,29955,29900,29871,13,29896,29955,29896,308,960,278,8722,947,451,1863,29892,10017,263,716,8722,411,1438,4426,29889,13,29896,29955,29906,308,9995,13,29896,29955,29941,308,736,1583,29889,25719,29918,5504,3319,13,29896,29955,29946,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29896,29955,29945,632,14180,842,2396,4426,29892,13,29896,29955,29953,308,2981,12700,29922,7299,470,426,1800,13,29896,29955,29955,29871,13,29896,29955,29947,268,822,2305,29918,842,29918,10646,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29896,29955,29929,308,9995,2697,4426,310,263,2305,2407,565,896,526,451,2307,731,29889,13,29896,29947,29900,29871,13,29896,29947,29896,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29896,29947,29906,308,584,3207,9657,4426,29901,4426,304,731,13,29896,29947,29941,29871,13,29896,29947,29946,308,3139,4426,393,2307,1863,373,278,8722,674,451,367,13,29896,29947,29945,308,975,17625,29889,960,278,8722,947,451,1863,29892,10017,263,716,8722,411,13,29896,29947,29953,308,1438,4426,29889,13,29896,29947,29955,308,9995,13,29896,29947,29947,308,736,1583,29889,25719,29918,5504,3319,13,29896,29947,29929,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29896,29929,29900,632,14180,842,29918,10646,2396,4426,29892,13,29896,29929,29896,308,2981,12700,29922,7299,470,426,1800,13,29896,29929,29906,29871,13,29896,29929,29941,268,822,2305,29918,25629,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29896,29929,29946,308,9995,797,17053,29914,311,17053,16259,4426,310,263,2305,2407,29889,13,29896,29929,29945,29871,13,29896,29929,29953,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29896,29929,29955,308,584,3207,9657,4426,29901,4426,304,11924,29914,311,17053,29936,1819,13,29896,29929,29947,632,881,367,16985,13,29896,29929,29929,29871,13,29906,29900,29900,308,3462,29879,16259,1819,304,4426,310,263,2305,2407,29889,6213,29916,9696,13,29906,29900,29896,308,4426,373,278,2407,2322,304,5225,29889,12610,1230,1819,297,13,29906,29900,29906,308,4954,11330,16159,674,9263,358,278,2183,2875,29889,13,29906,29900,29941,308,9995,13,29906,29900,29946,308,736,1583,29889,25719,29918,5504,3319,13,29906,29900,29945,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29906,29900,29953,632,14180,1202,2396,4426,29892,13,29906,29900,29955,308,2981,12700,29922,7299,470,426,1800,13,29906,29900,29947,29871,13,29906,29900,29929,268,822,2305,29918,4397,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29906,29896,29900,308,9995,18277,304,278,1051,6942,411,263,2875,29889,13,29906,29896,29896,29871,13,29906,29896,29906,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29906,29896,29941,308,584,3207,9657,4426,29901,4426,304,9773,13,29906,29896,29946,29871,13,29906,29896,29945,308,3462,29879,4452,304,1051,29899,3293,4426,310,263,2305,2407,29889,2401,2548,304,13,29906,29896,29953,308,5642,29916,9696,4426,2582,297,263,1051,411,263,2323,1543,29889,1152,13,29906,29896,29955,308,1342,1057,13,29906,29896,29947,29871,13,29906,29896,29929,632,22326,29889,25719,29918,4397,877,29896,29906,29941,742,11117,6913,2396,525,19111,8481,29915,1800,13,29906,29906,29900,308,9995,13,29906,29906,29896,308,736,1583,29889,25719,29918,5504,3319,13,29906,29906,29906,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29906,29906,29941,632,14180,4397,2396,4426,29892,13,29906,29906,29946,308,2981,12700,29922,7299,470,426,1800,13,29906,29906,29945,29871,13,29906,29906,29953,268,822,2305,29918,13094,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29906,29906,29955,308,9995,15836,479,278,1819,310,263,1051,6942,411,263,2875,29889,13,29906,29906,29947,29871,13,29906,29906,29929,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29906,29941,29900,308,584,3207,9657,4426,29901,4426,304,10366,13,29906,29941,29896,29871,13,29906,29941,29906,308,4702,2710,1051,1819,297,4954,11330,16159,411,5923,1051,29899,3293,13,29906,29941,29941,308,4426,310,263,2305,2407,29889,18733,5926,1819,526,17262,29889,1152,13,29906,29941,29946,308,1342,1057,13,29906,29941,29945,29871,13,29906,29941,29953,632,22326,29889,25719,29918,13094,877,29896,29906,29941,742,11117,6913,2396,6024,19111,8481,742,525,18654,24444,2033,1800,13,29906,29941,29955,308,9995,13,29906,29941,29947,308,736,1583,29889,25719,29918,5504,3319,13,29906,29941,29929,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29906,29946,29900,632,14180,13094,2396,4426,29892,13,29906,29946,29896,308,2981,12700,29922,7299,470,426,1800,13,29906,29946,29906,29871,13,29906,29946,29941,268,822,2305,29918,348,842,29898,1311,29892,8359,29918,333,29892,4426,29892,12700,29922,8516,1125,13,29906,29946,29946,308,9995,29925,3504,2705,3349,4426,515,263,2305,2407,29889,13,29906,29946,29945,29871,13,29906,29946,29953,308,584,3207,851,8359,29918,333,29901,278,8722,304,2767,13,29906,29946,29955,308,584,3207,1051,4426,29901,2875,2983,304,3349,13,29906,29946,29947,308,9995,13,29906,29946,29929,308,736,1583,29889,25719,29918,5504,3319,13,29906,29945,29900,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29906,29945,29896,632,14180,348,842,2396,4426,29892,13,29906,29945,29906,308,2981,12700,29922,7299,29897,13,29906,29945,29941,29871,13,29906,29945,29946,268,822,2305,29918,8143,29898,1311,29892,8359,29918,333,29892,12700,29922,8516,1125,13,29906,29945,29945,308,9995,29925,3504,2705,5217,263,2305,2407,29889,13,29906,29945,29953,29871,13,29906,29945,29955,308,584,3207,851,8359,29918,333,29901,278,8722,304,5217,13,29906,29945,29947,308,9995,13,29906,29945,29929,308,736,1583,29889,25719,29918,5504,3319,13,29906,29953,29900,632,14180,5721,5562,29918,333,2396,8359,29918,333,29892,13,29906,29953,29896,632,14180,8143,2396,12633,13,29906,29953,29906,308,2981,12700,29922,7299,470,6213,29897,13,29906,29953,29941,29871,13,29906,29953,29946,268,822,2305,29918,11294,29918,23367,29898,1311,29892,8359,29918,333,29892,5253,29892,13,29906,29953,29945,462,632,4426,29922,8516,29892,12700,29922,8516,1125,13,29906,29953,29953,308,9995,17936,263,8323,373,263,2305,2407,29889,13,29906,29953,29955,29871,13,29906,29953,29947,308,584,3207,851,8359,29918,333,29901,278,8722,411,607,304,25836,278,8323,13,29906,29953,29929,308,584,3207,16985,5253,29901,1353,310,17208,20139,13,29906,29955,29900,308,584,3207,9657,4426,29901,4805,4426,4475,304,278,10804,13,29906,29955,29896,29871,13,29906,29955,29906,308,14164,393,366,505,20139,278,1857,1404,263,3058,5253,310,13,29906,29955,29941,308,6909,29889,678,1191,267,10478,411,445,982,674,2615,297,278,23478,15119,13,29906,29955,29946,308,337,9947,3461,29889,13,29906,29955,29945,308,9995,13,29906,29955,29953,308,565,4426,338,6213,29901,13,29906,29955,29955,632,4426,353,6571,13,29906,29955,29947,308,4426,29889,5504,3319,13090,14506,2396,5253,1800,13,29906,29955,29929,308,736,1583,29889,25719,29918,4397,29898,13,29906,29947,29900,632,8359,29918,333,29892,11117,29938,3286,7387,2396,4426,470,426,11656,12700,29922,7299,470,6571,13,29906,29947,29896,308,1723,13,29906,29947,29906,29871,13,29906,29947,29941,268,822,2305,29918,8551,29918,25389,267,29898,1311,29892,8359,29918,333,29892,12700,29922,8516,1125,13,29906,29947,29946,308,9995,29925,3504,2705,2821,599,21090,373,263,2305,2407,29889,13,29906,29947,29945,29871,13,29906,29947,29953,308,584,3207,851,8359,29918,333,29901,278,8722,5069,21090,674,367,24639,13,29906,29947,29955,308,9995,13,29906,29947,29947,308,736,1583,29889,25719,29918,348,842,29898,13,29906,29947,29929,632,8359,29918,333,29892,6796,29938,3286,7387,12436,12700,29922,7299,470,24335,13,29906,29929,29900,308,1723,13,29906,29929,29896,29871,13,29906,29929,29906,268,822,2305,29918,5504,29898,1311,29892,2643,29892,12700,29922,8516,1125,13,29906,29929,29941,308,9995,12600,263,10035,2767,304,23478,15119,2305,16114,1199,29889,13,29906,29929,29946,29871,13,29906,29929,29945,308,584,3207,9657,2643,29901,278,2643,304,3638,13,29906,29929,29953,29871,13,29906,29929,29955,308,8251,414,526,14040,363,15998,278,2767,2643,408,23531,13,29906,29929,29947,308,297,278,421,29924,861,15119,7331,21992,29952,5396,910,1158,1122,367,5407,565,366,13,29906,29929,29929,308,864,304,671,1407,716,470,17986,5680,310,2305,16114,1199,29892,541,13,29941,29900,29900,308,3113,671,278,916,4954,25719,24563,16159,3519,988,1950,29889,13,29941,29900,29896,29871,13,29941,29900,29906,308,6317,903,29952,29924,861,15119,7331,21992,6998,2045,597,28084,15119,29889,510,29914,8477,29914,5679,29914,1124,13,29941,29900,29941,308,9995,13,29941,29900,29946,308,2407,353,426,13,29941,29900,29945,632,14180,6979,2396,1583,3032,6979,29892,13,29941,29900,29953,632,14180,2230,2396,938,29898,1311,3032,3707,580,334,29871,29896,29900,29900,29900,511,13,29941,29900,29955,308,500,13,29941,29900,29947,308,2407,29889,5504,29898,4906,29897,13,29941,29900,29929,308,565,12700,29901,13,29941,29896,29900,632,2407,29889,5504,29898,7299,29897,13,29941,29896,29896,308,1583,3032,25978,261,29889,6717,877,25719,742,4390,29918,29881,17204,29898,11651,29892,1067,29879,29922,1311,3032,15550,3950,876,13,29941,29896,29906,29871,13,29941,29896,29941,29871,13,29941,29896,29946,770,23478,15119,2451,29898,2451,1125,13,29941,29896,29945,268,9995,29934,1759,287,491,11233,414,746,9368,304,3638,7191,29889,13,29941,29896,29953,29871,13,29941,29896,29955,268,910,1033,367,8581,491,263,3564,714,482,470,1006,18953,29892,470,491,385,8340,13,29941,29896,29947,268,16248,4502,304,584,29885,621,29901,1412,13696,4680,29889,6717,1412,13,29941,29896,29929,268,9995,13,29941,29906,29900,268,1209,13,29941,29906,29896,29871,13,29941,29906,29906,29871,13,29941,29906,29941,770,2138,4680,29898,3318,1125,13,29941,29906,29946,268,9995,13,29941,29906,29945,268,319,21691,393,16003,385,7331,2009,4153,304,278,23478,15119,2669,29892,697,13,29941,29906,29953,268,639,1246,304,584,29885,621,18078,30022,29889,6717,1412,13,29941,29906,29955,29871,13,29941,29906,29947,268,584,3207,851,4959,29918,2271,29901,5712,278,2322,4959,3450,16248,13,29941,29906,29929,268,584,3207,851,2305,29918,2271,29901,5712,278,2322,2305,3450,16248,13,29941,29941,29900,268,584,3207,851,1053,29918,2271,29901,5712,278,2322,1053,3450,16248,13,29941,29941,29896,268,584,3207,938,2009,29918,15619,29901,3957,11815,297,6923,13,29941,29941,29906,268,9995,13,29941,29941,29941,29871,13,29941,29941,29946,268,822,4770,2344,12035,1311,29892,4959,29918,2271,29922,8516,29892,2305,29918,2271,29922,8516,29892,1053,29918,2271,29922,8516,29892,2009,29918,15619,29922,8516,1125,13,29941,29941,29945,308,1583,3032,355,9748,353,426,13,29941,29941,29953,632,525,13604,2396,4959,29918,2271,470,525,991,597,2754,29889,28084,15119,29889,510,29914,11294,742,13,29941,29941,29955,632,525,25719,2396,2305,29918,2271,470,525,991,597,2754,29889,28084,15119,29889,510,29914,996,482,742,13,29941,29941,29947,632,525,326,4011,2396,1053,29918,2271,470,525,991,597,2754,29889,28084,15119,29889,510,29914,5215,742,13,29941,29941,29929,308,500,13,29941,29946,29900,308,1583,3032,3827,29918,15619,353,2009,29918,15619,13,29941,29946,29896,29871,13,29941,29946,29906,268,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,29941,29946,29941,308,9995,1888,4210,2486,2407,385,1741,470,263,8722,2767,29889,13,29941,29946,29946,29871,13,29941,29946,29945,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,29941,29946,29953,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,29941,29946,29955,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29941,29946,29947,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,29941,29946,29929,632,443,276,496,519,29892,470,278,2643,2609,367,19356,13,29941,29945,29900,308,9995,13,29941,29945,29896,308,565,16248,297,1583,3032,355,9748,29901,13,29941,29945,29906,632,1583,3032,3539,29918,3827,29898,1311,3032,355,9748,29961,29734,1402,4390,29918,4906,29892,7882,29918,1989,29897,13,29941,29945,29941,308,1683,29901,13,29941,29945,29946,632,12020,23478,15119,2451,877,3782,1316,16248,29850,29900,29913,1642,15758,1095,9748,526,697,310,426,29896,29913,4286,4830,29898,29734,29892,1583,3032,355,9748,29889,8149,22130,13,29941,29945,29945,29871,13,29941,29945,29953,268,822,903,3539,29918,3827,29898,1311,29892,2009,29918,2271,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,29941,29945,29955,308,848,353,426,13,29941,29945,29947,632,525,1272,2396,2967,29953,29946,29889,29890,29953,29946,12508,29898,3126,29918,4906,29889,12508,877,9420,29947,1495,511,13,29941,29945,29929,632,525,369,15828,2396,29871,29896,29892,13,29941,29953,29900,632,525,666,2396,29871,29900,29892,13,29941,29953,29896,308,500,13,29941,29953,29906,308,565,7882,29918,1989,29901,13,29941,29953,29941,632,848,29889,5504,3319,29915,2754,29918,1989,2396,7882,29918,1989,1800,13,29941,29953,29946,308,18511,29918,1272,353,3142,1982,29889,5510,29889,2271,12508,29898,1272,467,12508,877,9420,29947,1495,13,29941,29953,29945,308,1018,29901,13,29941,29953,29953,632,2009,353,3142,1982,29889,3827,29889,3089,29898,3827,29918,2271,29892,18511,29918,1272,29897,13,29941,29953,29955,29871,13,29941,29953,29947,632,396,3940,29901,1334,1016,29915,29873,3638,11815,29922,8516,1244,29892,1363,278,11815,297,3142,1982,29906,21274,304,13,29941,29953,29929,632,396,385,7463,9909,11815,29892,451,6213,29889,13,29941,29955,29900,632,565,1583,3032,3827,29918,15619,338,451,6213,29901,13,29941,29955,29896,462,2933,353,3142,1982,29889,3827,29889,332,417,2238,29898,3827,29892,11815,29922,1311,3032,3827,29918,15619,467,949,580,13,29941,29955,29906,632,1683,29901,13,29941,29955,29941,462,2933,353,3142,1982,29889,3827,29889,332,417,2238,29898,3827,467,949,580,13,29941,29955,29946,308,5174,3142,1982,29889,2704,29889,4574,1307,24616,408,321,29901,13,29941,29955,29945,632,4832,29889,22692,29918,3166,29898,29924,861,15119,2451,29898,29872,511,321,29897,13,29941,29955,29953,29871,13,29941,29955,29955,308,1018,29901,13,29941,29955,29947,632,2933,353,4390,29889,18132,29898,5327,29889,13808,877,9420,29947,8785,13,29941,29955,29929,308,5174,7865,2392,29901,13,29941,29947,29900,632,12020,23478,15119,2451,877,29089,6613,23478,15119,1923,2933,29901,426,29900,29913,4286,4830,29898,5327,876,13,29941,29947,29896,29871,13,29941,29947,29906,308,565,2933,1839,4882,2033,2804,29871,29896,29901,13,29941,29947,29941,632,12020,23478,15119,2451,877,29924,861,15119,1059,29901,426,29900,29913,4286,4830,29898,5327,1839,2704,25901,13,29941,29947,29946,29871,13,29941,29947,29945,308,736,5852,13,29941,29947,29953,29871,13,29941,29947,29955,29871,13,29941,29947,29947,770,22217,13696,4680,29898,3318,1125,13,29941,29947,29929,268,9995,13,29941,29929,29900,268,319,21691,393,7344,29879,639,29899,29734,20487,414,310,7191,322,769,16003,13,29941,29929,29896,268,963,297,9853,267,29889,910,508,4078,3719,2103,322,10032,278,3001,5253,310,13,29941,29929,29906,268,931,3734,304,1400,596,4959,304,23478,15119,29889,13,29941,29929,29941,29871,13,29941,29929,29946,268,6317,4443,1057,13,29941,29929,29945,308,7311,584,1990,18078,30022,29889,7701,287,13696,4680,29952,8640,4959,29892,366,817,304,1246,13,29941,29929,29953,308,584,29885,621,18078,30022,29889,23126,29952,746,366,29915,276,1854,366,29915,276,2309,9348,963,30003,1454,1342,29892,13,29941,29929,29955,308,925,1434,596,1824,429,1169,29889,315,4293,304,584,29885,621,18078,30022,29889,23126,29952,674,3638,599,13,29941,29929,29947,308,9886,9644,296,4959,1641,4934,491,278,2777,29889,13,29941,29929,29929,29871,13,29946,29900,29900,268,584,3207,938,4236,29918,2311,29901,1353,310,584,29885,621,18078,30022,29889,6717,29952,5717,363,263,2183,16248,304,13,29946,29900,29896,308,6835,1434,1652,21616,6336,13,29946,29900,29906,268,584,3207,851,4959,29918,2271,29901,5712,278,2322,4959,3450,16248,13,29946,29900,29941,268,584,3207,851,2305,29918,2271,29901,5712,278,2322,2305,3450,16248,13,29946,29900,29946,268,584,3207,851,1053,29918,2271,29901,5712,278,2322,1053,3450,16248,13,29946,29900,29945,268,584,3207,938,2009,29918,15619,29901,3957,11815,297,6923,13,29946,29900,29953,268,9995,13,29946,29900,29955,268,822,4770,2344,12035,1311,29892,4236,29918,2311,29922,29945,29900,29892,4959,29918,2271,29922,8516,29892,2305,29918,2271,29922,8516,29892,1053,29918,2271,29922,8516,29892,2009,29918,15619,29922,8516,1125,13,29946,29900,29947,308,1583,3032,25978,261,353,2138,4680,29898,13604,29918,2271,29892,2305,29918,2271,29892,1053,29918,2271,29892,2009,29918,15619,29897,13,29946,29900,29929,308,1583,3032,28040,414,353,426,13,29946,29896,29900,632,525,13604,2396,19997,13,29946,29896,29896,632,525,25719,2396,19997,13,29946,29896,29906,632,525,326,4011,2396,19997,13,29946,29896,29941,308,500,13,29946,29896,29946,308,1583,3032,3317,29918,2311,353,1375,29898,29945,29900,29892,4236,29918,2311,29897,13,29946,29896,29945,29871,13,29946,29896,29953,268,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,29946,29896,29955,308,9995,9182,385,1741,470,8722,2767,29889,13,29946,29896,29947,29871,13,29946,29896,29929,308,2422,635,29892,12778,278,2643,304,263,6835,29892,322,769,28371,267,278,6835,13,29946,29906,29900,308,565,372,756,7450,278,13252,7472,2159,29889,3940,393,15283,13,29946,29906,29896,308,10425,1122,505,1063,8581,491,263,2643,6835,287,491,385,8859,1246,304,13,29946,29906,29906,308,584,29885,621,18078,30022,29889,6717,1412,13,29946,29906,29941,29871,13,29946,29906,29946,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,29946,29906,29945,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,29946,29906,29953,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29946,29906,29955,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,29946,29906,29947,632,443,276,496,519,29892,470,738,6835,287,2643,2609,367,19356,13,29946,29906,29929,308,9995,13,29946,29941,29900,308,565,16248,451,297,1583,3032,28040,414,29901,13,29946,29941,29896,632,12020,23478,15119,2451,877,3782,1316,16248,29850,29900,29913,1642,15758,1095,9748,526,697,310,426,29896,29913,4286,4830,29898,29734,29892,1583,3032,28040,414,29889,8149,22130,13,29946,29941,29906,29871,13,29946,29941,29941,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,29946,29941,29946,308,18392,29889,4397,29898,3126,29918,4906,29897,13,29946,29941,29945,308,565,7431,29898,9721,29897,6736,1583,3032,3317,29918,2311,29901,13,29946,29941,29953,632,1583,3032,23126,29918,29734,29898,29734,29892,7882,29918,1989,29897,13,29946,29941,29955,29871,13,29946,29941,29947,268,822,28371,29898,1311,1125,13,29946,29941,29929,308,9995,1888,4210,2486,3638,599,6835,287,7191,304,23478,15119,29889,13,29946,29946,29900,29871,13,29946,29946,29896,308,584,336,4637,23478,15119,2451,29901,565,278,1923,338,443,276,496,519,470,738,6835,287,13,29946,29946,29906,632,2643,2609,367,19356,13,29946,29946,29941,308,9995,13,29946,29946,29946,308,363,16248,297,1583,3032,28040,414,29889,8149,7295,13,29946,29946,29945,632,1583,3032,23126,29918,29734,29898,29734,29897,13,29946,29946,29953,29871,13,29946,29946,29955,268,822,903,23126,29918,29734,29898,1311,29892,16248,29892,7882,29918,1989,29922,8516,1125,13,29946,29946,29947,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,29946,29946,29929,308,1550,18392,29901,13,29946,29945,29900,632,9853,353,18392,7503,1311,3032,3317,29918,2311,29962,13,29946,29945,29896,632,9853,29918,3126,353,525,19660,29900,6525,4286,4830,29898,3788,29889,7122,29898,16175,876,13,29946,29945,29906,632,1018,29901,13,29946,29945,29941,462,1583,3032,25978,261,29889,6717,29898,29734,29892,9853,29918,3126,29892,7882,29918,1989,29897,13,29946,29945,29946,632,5174,23478,15119,2451,408,1677,29918,29872,29901,13,29946,29945,29945,462,22326,29918,29872,353,23478,15119,2451,29898,12683,29918,29872,29897,13,29946,29945,29953,462,22326,29918,29872,29889,4906,353,9853,29918,3126,13,29946,29945,29955,462,22326,29918,29872,29889,29734,353,16248,13,29946,29945,29947,462,4832,29889,22692,29918,3166,29898,1526,29918,29872,29892,1677,29918,29872,29897,13,29946,29945,29929,632,18392,353,18392,29961,1311,3032,3317,29918,2311,17531,13,29946,29953,29900,308,1583,3032,28040,414,29961,29734,29962,353,18392,13,29946,29953,29896,29871,13,29961,355,310,6837,15119,29914,1649,2344,26914,2272,29962,13,829,401,29958,13,13,10605,338,385,1342,310,263,13261,934,29889,739,11624,310,3620,304,278,775,2967,29889,739,1580,11057,278,934,2983,29892,278,1196,3694,310,1269,1735,29892,322,278,6206,322,2715,3454,29889,319,2323,13261,934,508,1712,3620,304,2999,2066,29889,13,29966,5041,29958,13,5634,263,29914,1445,29889,2272,13,1817,29974,289,29914,1445,29889,2272,13,25380,448,29896,29892,29906,29955,718,29896,29892,29941,29945,732,29992,13,822,321,27511,29898,29874,29892,289,1125,13,29899,1678,1550,289,29901,13,29899,4706,263,29892,289,353,289,29892,263,1273,289,13,29899,1678,736,263,13,29974,1678,565,289,1275,29871,29900,29901,13,29974,4706,736,263,13,29974,1678,736,321,27511,29898,29890,29892,263,1273,289,29897,13,29871,13,29871,13,822,289,690,264,3391,29898,29916,29900,29892,343,29900,29892,921,29896,29892,343,29896,1125,13,268,3291,353,5159,13,268,15414,353,6425,29898,29916,29896,448,921,29900,29897,13,268,13475,353,6425,29898,29891,29896,448,343,29900,29897,13,29899,1678,269,29916,353,29871,29896,565,921,29900,529,921,29896,1683,448,29896,13,29899,1678,9878,353,29871,29896,565,343,29900,529,343,29896,1683,448,29896,13,29899,1678,4589,353,15414,448,13475,13,29974,1678,921,29892,343,353,921,29900,29892,343,29900,13,29974,1678,269,29916,353,448,29896,565,921,29900,1405,921,29896,1683,29871,29896,13,29974,1678,9878,353,448,29896,565,343,29900,1405,343,29896,1683,29871,29896,13,29871,13,29899,1678,1550,5852,29901,13,29899,4706,3291,29889,4397,3552,29916,29900,29892,343,29900,876,13,29899,4706,565,921,29900,1275,921,29896,322,343,29900,1275,343,29896,29901,13,29899,9651,2867,13,29899,4706,321,29906,353,29871,29906,334,4589,13,29899,4706,565,321,29906,1405,448,4518,29901,13,29974,1678,565,15414,1405,13475,29901,13,29974,4706,4589,353,15414,847,29871,29906,29889,29900,13,29974,4706,1550,921,2804,921,29896,29901,13,29974,9651,3291,29889,4397,3552,29916,29892,343,876,13,632,4589,22361,13475,13,29899,9651,921,29900,4619,269,29916,13,29899,4706,565,321,29906,529,15414,29901,13,29899,9651,4589,4619,15414,13,29899,9651,343,29900,4619,9878,13,29974,9651,565,4589,529,29871,29900,29901,13,29974,18884,343,4619,9878,13,29974,18884,4589,4619,15414,13,29974,9651,921,4619,269,29916,13,29974,1678,1683,29901,13,29974,4706,4589,353,13475,847,29871,29906,29889,29900,13,29974,4706,1550,343,2804,343,29896,29901,13,29974,9651,3291,29889,4397,3552,29916,29892,343,876,13,29974,9651,4589,22361,15414,13,29974,9651,565,4589,529,29871,29900,29901,13,29974,18884,921,4619,269,29916,13,29974,18884,4589,4619,13475,13,29974,9651,343,4619,9878,13,29871,13,29974,1678,3291,29889,4397,3552,29916,29892,343,876,13,268,736,3291,13,829,5041,29958,13,13,29902,817,366,304,4505,278,4944,2228,491,14655,263,2323,13261,934,393,306,508,3394,4153,304,445,9810,773,6315,3394,29889,3529,10049,411,263,2323,13261,934,297,278,3402,4318,2038,29889,13,1666,2818,2400,29901,13,29966,5041,29958,13,12765,1192,5559,263,29914,28084,15119,29914,1649,2344,26914,2272,289,29914,28084,15119,29914,1649,2344,26914,2272,13,5634,263,29914,28084,15119,29914,1649,2344,26914,2272,13,1817,29974,289,29914,28084,15119,29914,1649,2344,26914,2272,13,25380,448,29941,29946,29945,29892,29953,718,29941,29946,29945,29892,29955,732,29992,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29974,4706,584,3207,851,7882,29918,1989,29901,596,23478,15119,2060,29915,29879,3450,1820,13,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,632,443,276,496,519,29892,470,278,2643,2609,367,19356,13,308,9995,13,25380,448,29946,29896,29906,29892,29953,718,29946,29896,29941,29892,29955,732,29992,822,4770,2344,12035,1311,29892,4236,29918,2311,29922,29945,29900,29892,4959,29918,2271,29922,8516,29892,2305,29918,2271,29922,8516,29892,1053,29918,2271,29922,12283,13,632,525,326,4011,2396,19997,13,308,500,13,308,1583,3032,3317,29918,2311,353,1375,29898,29945,29900,29892,4236,29918,2311,29897,13,29974,4706,1583,3032,2754,29918,1989,353,6213,13,29871,13,268,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,9995,9182,385,1741,470,8722,2767,29889,13,25380,448,29946,29906,29946,29892,29896,29953,718,29946,29906,29953,29892,29906,29906,732,29992,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29974,4706,584,3207,851,7882,29918,1989,29901,596,23478,15119,2060,29915,29879,3450,1820,13,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,632,443,276,496,519,29892,470,738,6835,287,2643,2609,367,19356,13,29974,13,29974,4706,6317,1873,23959,1057,29871,29946,29889,29941,29889,29906,13,29974,9651,450,334,2754,29918,1989,29930,3443,29889,13,308,9995,13,308,565,16248,451,297,1583,3032,28040,414,29901,13,632,12020,23478,15119,2451,877,3782,1316,16248,29850,29900,29913,1642,15758,1095,9748,526,697,310,426,29896,29913,4286,4830,29898,29734,29892,1583,3032,28040,414,29889,8149,22130,13,29871,13,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,308,18392,29889,4397,29898,3126,29918,4906,29897,13,29974,4706,565,7882,29918,1989,338,451,6213,29901,13,29974,9651,1583,3032,2754,29918,1989,353,7882,29918,1989,13,308,565,7431,29898,9721,29897,6736,1583,3032,3317,29918,2311,29901,13,29899,9651,1583,3032,23126,29918,29734,29898,29734,29892,7882,29918,1989,29897,13,29974,9651,1583,3032,23126,29918,29734,29898,29734,29897,13,29871,13,268,822,28371,29898,1311,1125,13,308,9995,1888,4210,2486,3638,599,6835,287,7191,304,23478,15119,29889,13,25380,448,29946,29946,29946,29892,29896,29941,718,29946,29945,29906,29892,29896,29941,732,29992,822,28371,29898,1311,1125,13,308,363,16248,297,1583,3032,28040,414,29889,8149,7295,13,632,1583,3032,23126,29918,29734,29898,29734,29897,13,29871,13,29899,1678,822,903,23126,29918,29734,29898,1311,29892,16248,29892,7882,29918,1989,29922,8516,1125,13,29974,1678,822,903,23126,29918,29734,29898,1311,29892,16248,1125,13,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,308,1550,18392,29901,13,632,9853,353,18392,7503,1311,3032,3317,29918,2311,29962,13,632,9853,29918,3126,353,525,19660,29900,6525,4286,4830,29898,3788,29889,7122,29898,16175,876,13,632,1018,29901,13,29899,18884,1583,3032,25978,261,29889,6717,29898,29734,29892,9853,29918,3126,29892,7882,29918,1989,29897,13,29974,18884,1583,3032,25978,261,29889,6717,29898,29734,29892,9853,29918,3126,29892,1583,3032,2754,29918,1989,29897,13,632,5174,23478,15119,2451,408,1677,29918,29872,29901,13,462,22326,29918,29872,353,23478,15119,2451,29898,12683,29918,29872,29897,13,462,22326,29918,29872,29889,4906,353,9853,29918,3126,13,13,829,5041,29958(...TRUNCATED)
-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,29966,5041,29958,13,12765,1192,5559,263,29914,28084,15119,29914,1649,2344,26914,2272,289,29914,28084,15119,29914,1649,2344,26914,2272,13,5634,263,29914,28084,15119,29914,1649,2344,26914,2272,13,1817,29974,289,29914,28084,15119,29914,1649,2344,26914,2272,13,25380,448,29941,29946,29945,29892,29953,718,29941,29946,29945,29892,29955,732,29992,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29974,4706,584,3207,851,7882,29918,1989,29901,596,23478,15119,2060,29915,29879,3450,1820,13,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,632,443,276,496,519,29892,470,278,2643,2609,367,19356,13,308,9995,13,25380,448,29946,29896,29906,29892,29953,718,29946,29896,29941,29892,29955,732,29992,822,4770,2344,12035,1311,29892,4236,29918,2311,29922,29945,29900,29892,4959,29918,2271,29922,8516,29892,2305,29918,2271,29922,8516,29892,1053,29918,2271,29922,12283,13,632,525,326,4011,2396,19997,13,308,500,13,308,1583,3032,3317,29918,2311,353,1375,29898,29945,29900,29892,4236,29918,2311,29897,13,29974,4706,1583,3032,2754,29918,1989,353,6213,13,29871,13,268,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,9995,9182,385,1741,470,8722,2767,29889,13,25380,448,29946,29906,29946,29892,29896,29953,718,29946,29906,29953,29892,29906,29906,732,29992,822,3638,29898,1311,29892,16248,29892,4390,29918,4906,29892,7882,29918,1989,29922,8516,1125,13,308,584,3207,16248,29901,278,23478,15119,3450,16248,8210,363,278,2643,13,308,584,1853,16248,29901,376,13604,29908,891,376,25719,29908,891,376,326,4011,29908,13,308,584,3207,851,4390,29918,4906,29901,263,4663,2643,20917,363,278,16248,13,29974,4706,584,3207,851,7882,29918,1989,29901,596,23478,15119,2060,29915,29879,3450,1820,13,308,584,336,4637,23478,15119,2451,29901,565,278,16248,1838,29915,29873,1863,29892,278,1923,338,13,632,443,276,496,519,29892,470,738,6835,287,2643,2609,367,19356,13,29974,13,29974,4706,6317,1873,23959,1057,29871,29946,29889,29941,29889,29906,13,29974,9651,450,334,2754,29918,1989,29930,3443,29889,13,308,9995,13,308,565,16248,451,297,1583,3032,28040,414,29901,13,632,12020,23478,15119,2451,877,3782,1316,16248,29850,29900,29913,1642,15758,1095,9748,526,697,310,426,29896,29913,4286,4830,29898,29734,29892,1583,3032,28040,414,29889,8149,22130,13,29871,13,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,308,18392,29889,4397,29898,3126,29918,4906,29897,13,29974,4706,565,7882,29918,1989,338,451,6213,29901,13,29974,9651,1583,3032,2754,29918,1989,353,7882,29918,1989,13,308,565,7431,29898,9721,29897,6736,1583,3032,3317,29918,2311,29901,13,29899,9651,1583,3032,23126,29918,29734,29898,29734,29892,7882,29918,1989,29897,13,29974,9651,1583,3032,23126,29918,29734,29898,29734,29897,13,29871,13,268,822,28371,29898,1311,1125,13,308,9995,1888,4210,2486,3638,599,6835,287,7191,304,23478,15119,29889,13,25380,448,29946,29946,29946,29892,29896,29941,718,29946,29945,29906,29892,29896,29941,732,29992,822,28371,29898,1311,1125,13,308,363,16248,297,1583,3032,28040,414,29889,8149,7295,13,632,1583,3032,23126,29918,29734,29898,29734,29897,13,29871,13,29899,1678,822,903,23126,29918,29734,29898,1311,29892,16248,29892,7882,29918,1989,29922,8516,1125,13,29974,1678,822,903,23126,29918,29734,29898,1311,29892,16248,1125,13,308,18392,353,1583,3032,28040,414,29961,29734,29962,13,308,1550,18392,29901,13,632,9853,353,18392,7503,1311,3032,3317,29918,2311,29962,13,632,9853,29918,3126,353,525,19660,29900,6525,4286,4830,29898,3788,29889,7122,29898,16175,876,13,632,1018,29901,13,29899,18884,1583,3032,25978,261,29889,6717,29898,29734,29892,9853,29918,3126,29892,7882,29918,1989,29897,13,29974,18884,1583,3032,25978,261,29889,6717,29898,29734,29892,9853,29918,3126,29892,1583,3032,2754,29918,1989,29897,13,632,5174,23478,15119,2451,408,1677,29918,29872,29901,13,462,22326,29918,29872,353,23478,15119,2451,29898,12683,29918,29872,29897,13,462,22326,29918,29872,29889,4906,353,9853,29918,3126,13,13,829,5041,29958,2(...TRUNCATED)
NVIDIA__NeMo-7124
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
fcfc0ebb23b428a9bee6d847d1e0b37ca0784ba5
"Installation instructions should better indicate mandatory steps to make tests pass (or reinstall.s(...TRUNCATED)
"These libraries cannot be installed automatically due to this dependence on on extra index for dist(...TRUNCATED)
2023-07-28T19:34:30Z
"<patch>\ndiff --git a/nemo/utils/model_utils.py b/nemo/utils/model_utils.py\n--- a/nemo/utils/model(...TRUNCATED)
"diff --git a/tests/collections/nlp/test_flash_attention.py b/tests/collections/nlp/test_flash_atten(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
slackapi__python-slack-events-api-34
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
slackapi/python-slack-events-api
79949e66cc442b241eaed08ffe79d8dc7a166638
"Add support for request signing\n### Description\r\n\r\nRequest signing went live and we should add(...TRUNCATED)
"someone has a branch somewhere with this implemented, i hear 👂 \r\n\r\nwe'll get some more detai(...TRUNCATED)
2018-08-08T18:22:04Z
"<patch>\ndiff --git a/example/example.py b/example/example.py\n--- a/example/example.py\n+++ b/exam(...TRUNCATED)
"diff --git a/tests/conftest.py b/tests/conftest.py\n--- a/tests/conftest.py\n+++ b/tests/conftest.p(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
celery__celery-2666
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
celery/celery
6bf4664e076c4d8b6d728190802124aa5c112c5d
"Celerybeat runs periodic tasks every 5 seconds regardless of interval\nI recently upgraded to celer(...TRUNCATED)
"Could you try upgrading to celery 3.0.7? Also please delete an existing `celerybeat-schedule` file(...TRUNCATED)
2015-06-19T00:01:16Z
"<patch>\ndiff --git a/celery/schedules.py b/celery/schedules.py\n--- a/celery/schedules.py\n+++ b/c(...TRUNCATED)
"diff --git a/celery/tests/app/test_beat.py b/celery/tests/app/test_beat.py\n--- a/celery/tests/app/(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
NVIDIA__NeMo-5724
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
eee715f831f2b088075f75cc7c95de60f4ef1d38
"EMA Doesn't delete previous EMA ckpts when k > 0 for checkpointing\n**Describe the bug**\r\n\r\nEMA(...TRUNCATED)
"cc @carmocca\nIdeally, we would find a better solution. However, since that would require a larger (...TRUNCATED)
2023-01-03T11:05:25Z
"<patch>\ndiff --git a/nemo/collections/common/callbacks/ema.py b/nemo/collections/common/callbacks/(...TRUNCATED)
"diff --git a/tests/collections/common/test_ema.py b/tests/collections/common/test_ema.py\n--- a/tes(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
NVIDIA__NeMo-6097
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
66aeb4c36dd86a777cc47e9878e701bd8029b654
"Spectrogram Enhancer doesn't generalize to spectrogram lengths unseen during training\n**Describe t(...TRUNCATED)
"A temporary fix: given a trained model, clone first patch of the initial tensor length-wise:\r\n```(...TRUNCATED)
2023-02-23T22:43:15Z
"<patch>\ndiff --git a/nemo/collections/tts/modules/spectrogram_enhancer.py b/nemo/collections/tts/m(...TRUNCATED)
"diff --git a/tests/collections/tts/test_spectrogram_enhancer.py b/tests/collections/tts/test_spectr(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
NVIDIA__NeMo-3159
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
c607061264713c9f4c35d1fbc5afaaf41471317e
"Punctuation data set uses too much memory\n**Describe the bug**\r\n\r\nPunctuation datasets cannot (...TRUNCATED)
(...TRUNCATED)
2021-11-10T13:43:43Z
"<patch>\ndiff --git a/examples/nlp/token_classification/data/create_punctuation_capitalization_tarr(...TRUNCATED)
"diff --git a/tests/collections/nlp/test_pretrained_models_performance.py b/tests/collections/nlp/te(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
NVIDIA__NeMo-6060
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
64b74dc9eaa6a23e52b697c9f9b7ad87528a2373
"Spectrogram Enhancer doesn't generalize to spectrogram lengths unseen during training\n**Describe t(...TRUNCATED)
"A temporary fix: given a trained model, clone first patch of the initial tensor length-wise:\r\n```(...TRUNCATED)
2023-02-20T16:02:45Z
"<patch>\ndiff --git a/nemo/collections/tts/modules/spectrogram_enhancer.py b/nemo/collections/tts/m(...TRUNCATED)
"diff --git a/tests/collections/tts/test_spectrogram_enhancer.py b/tests/collections/tts/test_spectr(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
celery__celery-567
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
celery/celery
9998b55af267446a077b31fdf35806c59b943b2d
"Introduce CELERYCTL variable in /etc/init.d/celeryd and /etc/default/celeryd\nI ran into a problem (...TRUNCATED)
(...TRUNCATED)
2011-12-12T12:49:09Z
"<patch>\ndiff --git a/celery/__init__.py b/celery/__init__.py\n--- a/celery/__init__.py\n+++ b/cele(...TRUNCATED)
"diff --git a/celery/tests/config.py b/celery/tests/config.py\n--- a/celery/tests/config.py\n+++ b/c(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
NVIDIA__NeMo-1323
"You will be provided with a partial code base and an issue statement explaining a problem to resolv(...TRUNCATED)
NVIDIA/NeMo
5cf042856bf718d27233a7538e0b094ce576d5c4
"Loading NLP and ASR models might result in `Missing key(s) in state_dict` error\n**Describe the bug(...TRUNCATED)
(...TRUNCATED)
2020-10-21T20:01:26Z
"<patch>\ndiff --git a/examples/asr/speech_to_text_infer.py b/examples/asr/speech_to_text_infer.py\n(...TRUNCATED)
"diff --git a/examples/tts/test_tts_infer.py b/examples/tts/test_tts_infer.py\n--- a/examples/tts/te(...TRUNCATED)
1.0
[887,674,367,4944,411,263,7687,775,2967,322,385,2228,3229,24232,263,1108,304,8814,29889,13,29966,151(...TRUNCATED)
[-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100,-100(...TRUNCATED)
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

dataset_info: features: - name: repo dtype: string - name: instance_id dtype: string - name: base_commit dtype: string - name: patch dtype: string - name: test_patch dtype: string - name: problem_statement dtype: string - name: hints_text dtype: string - name: created_at dtype: string - name: version dtype: string - name: FAIL_TO_PASS dtype: string - name: PASS_TO_PASS dtype: string - name: environment_setup_commit dtype: string splits: - name: dev - name: test - name: train configs:

  • config_name: default data_files:
    • split: dev path: data/dev-*
    • split: test path: data/test-*
    • split: train path: data/train-*
Downloads last month
8
Edit dataset card