Commit e251d3eb7aefd8afea7cafcc449a6670ac028e88
1 parent
35cb8f6d
hard coded code for 224 layer
Showing
7 changed files
with
156 additions
and
84 deletions
400-SOURCECODE/AIAHTML5.API/Web.config
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | <add key="EnableSSL" value="false" /> |
40 | 40 | <add key="Site_Url" value ="http://qa.beta.interactiveanatomy.com/"/> |
41 | 41 | <add key ="HostAddress" value="10.100.12.13" /> |
42 | - <add key="isUserAuthenticated" value="false"/> | |
42 | + <add key="isUserAuthenticated" value="true"/> | |
43 | 43 | <add key="AdminSupport" value="amrita.vishnoi@ebix.com,nikita.kulshreshtha@ebix.com"/> |
44 | 44 | </appSettings> |
45 | 45 | <system.web> | ... | ... |
400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll
No preview for this file type
400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.dll.config
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | <add key="EnableSSL" value="false" /> |
40 | 40 | <add key="Site_Url" value ="http://qa.beta.interactiveanatomy.com/"/> |
41 | 41 | <add key ="HostAddress" value="10.100.12.13" /> |
42 | - <add key="isUserAuthenticated" value="true"/> | |
42 | + <add key="isUserAuthenticated" value="false"/> | |
43 | 43 | <add key="AdminSupport" value="amrita.vishnoi@ebix.com,nikita.kulshreshtha@ebix.com"/> |
44 | 44 | </appSettings> |
45 | 45 | <system.web> | ... | ... |
400-SOURCECODE/AIAHTML5.API/bin/AIAHTML5.API.pdb
No preview for this file type
400-SOURCECODE/AIAHTML5.Web/AIAHTML5.Web.csproj
... | ... | @@ -57,6 +57,7 @@ |
57 | 57 | <Content Include="app\services\AuthenticationService.js" /> |
58 | 58 | <Content Include="app\services\DataService.js" /> |
59 | 59 | <Content Include="app\services\ModuleService.js" /> |
60 | + <Content Include="app\services\TermService.js" /> | |
60 | 61 | <Content Include="app\utility\BitmapData.js" /> |
61 | 62 | <Content Include="app\utility\Matrix.js" /> |
62 | 63 | <Content Include="app\utility\Paint.js" /> |
... | ... | @@ -578,6 +579,7 @@ |
578 | 579 | <Content Include="content\data\json\da\body-views\2\da_dat_body_system_term_2.json" /> |
579 | 580 | <Content Include="content\data\json\da\body-views\11\da_dat_body_system_term_11.json" /> |
580 | 581 | <Content Include="content\data\json\da\body-views\12\da_dat_body_system_term_12.json" /> |
582 | + <Content Include="content\data\json\da\body-views\1\bodyLayers.json" /> | |
581 | 583 | <None Include="content\data\json\da\body-views\2\da_dat_tm_sg_2.json" /> |
582 | 584 | <Content Include="content\data\json\da\body-views\3\da_dat_body_system_term_3.json" /> |
583 | 585 | <None Include="content\data\json\da\body-views\3\da_dat_tm_sg_3.json" /> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -2638,133 +2638,200 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
2638 | 2638 | |
2639 | 2639 | } |
2640 | 2640 | |
2641 | - var worker = new Worker('term-number-wp.js'); | |
2641 | + if ($scope.layerNumber == 224) | |
2642 | + { | |
2643 | + | |
2642 | 2644 | |
2643 | - //push workers in array to further used the refernece to delete the workers | |
2644 | - $scope.runningWorkers.push({ 'workerName': worker }) | |
2645 | + var matchedTermListPath = '~/../content/data/json/da/body-views/1/bodyLayers.json'; | |
2645 | 2646 | |
2646 | - console.log('before worker call BRID: ' + bodyRegionId) | |
2647 | + DataService.getJson(matchedTermListPath) | |
2648 | + .then( | |
2649 | + function (result) | |
2650 | + { | |
2651 | + | |
2652 | + $rootScope.macthedTermList = result; | |
2653 | + var termNo=0; | |
2654 | + var pixcelLocation = 0; | |
2647 | 2655 | |
2648 | - //if (grayImageDataVar != null && coloredImageDataVar != null && maskData != null) { | |
2649 | - if (grayImageDataVar != null && coloredImageDataVar != null && maskData != null && TermList != undefined && TermList.length > 0) { | |
2650 | - worker.postMessage({ | |
2656 | + if ($rootScope.macthedTermList.length > 0) { | |
2657 | + angular.forEach($rootScope.macthedTermList, function (value, key) { | |
2651 | 2658 | |
2652 | - 'termList': TermList, | |
2653 | - 'maskCanvasData': maskData, | |
2654 | - 'coloredImageData': coloredImageDataVar, | |
2655 | - 'grayImageData': grayImageDataVar, | |
2656 | - 'bodyRegionId': bodyRegionId, | |
2657 | - 'canvasId': canvasId | |
2659 | + var TermExistInBodyRegionId = value.bodyRegionId; | |
2660 | + var grayImageDataVar = $rootScope.grayImageDataList[TermExistInBodyRegionId - 1]; | |
2661 | + var coloredImageDataVar = $rootScope.coloredImageCanvasList[TermExistInBodyRegionId - 1]; | |
2658 | 2662 | |
2659 | - }); | |
2660 | - } | |
2661 | - else { | |
2662 | - $('#spinner').css('visibility', 'hidden') | |
2663 | - $rootScope.isLoading = false; | |
2664 | - } | |
2663 | + var grayImageDataValue = grayImageDataVar.data; | |
2664 | + var coloredImageDataValue = coloredImageDataVar.data; | |
2665 | 2665 | |
2666 | + $rootScope.termListWithLocation = value.terms; | |
2666 | 2667 | |
2667 | - worker.onmessage = function (e) { | |
2668 | - console.log('callback for e.data.bodyRegionId: ' + e.data.bodyRegionId + ', time: ' + new Date().toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1")); | |
2668 | + angular.forEach($rootScope.termListWithLocation[0].PixelLocations, function (value1, key) { | |
2669 | + var coloredImageData = coloredImageDataValue[value1]; | |
2670 | + grayImageDataValue[value1] = coloredImageData; | |
2669 | 2671 | |
2670 | - var updatedData = e.data.value; | |
2671 | 2672 | |
2672 | - var bodyRegionId = e.data.bodyRegionId; | |
2673 | - var canvasId = (e.data.canvasId).replace('_mci', ''); | |
2673 | + }) | |
2674 | 2674 | |
2675 | - var grayCanvasID = canvasId; | |
2675 | + var grayCanvasID = 'imageCanvas' + TermExistInBodyRegionId; | |
2676 | + var grayCanvas = document.getElementById(grayCanvasID); | |
2677 | + if (grayCanvas != null) | |
2678 | + { | |
2679 | + | |
2680 | + var grayCanvasContext = grayCanvas.getContext("2d"); | |
2676 | 2681 | |
2682 | + var canvasHeight = grayCanvas.height + 'px'; | |
2683 | + var canvasWidth = grayCanvas.width + 'px'; | |
2684 | + grayCanvasContext.clearRect(0, 0, canvasHeight, canvasWidth) | |
2677 | 2685 | |
2678 | - var grayCanvas = document.getElementById(grayCanvasID); | |
2679 | - if (grayCanvas != null) { | |
2680 | - var grayCanvasContext = grayCanvas.getContext("2d"); | |
2686 | + grayCanvasContext.putImageData(grayImageDataVar, 0, 0); | |
2687 | + | |
2681 | 2688 | |
2682 | - var canvasHeight = grayCanvas.height + 'px'; | |
2683 | - var canvasWidth = grayCanvas.width + 'px'; | |
2684 | - grayCanvasContext.clearRect(0, 0, canvasHeight, canvasWidth) | |
2689 | + } | |
2690 | + $('#spinner').css('visibility', 'hidden') | |
2691 | + $rootScope.isLoading = false; | |
2692 | + | |
2693 | + }) | |
2694 | + } | |
2695 | + | |
2696 | + | |
2697 | + | |
2698 | + }, | |
2699 | + function (error) { | |
2700 | + console.log(' Error in getting term data = ' + error.statusText); | |
2701 | + | |
2702 | + }); | |
2685 | 2703 | |
2686 | - grayCanvasContext.putImageData(updatedData, 0, 0); | |
2687 | - $scope.highlightedBR.push({ 'bodyRegionId': bodyRegionId }); | |
2704 | + } | |
2705 | + else { | |
2688 | 2706 | |
2689 | - } | |
2707 | + var worker = new Worker('term-number-wp.js'); | |
2690 | 2708 | |
2709 | + //push workers in array to further used the refernece to delete the workers | |
2710 | + $scope.runningWorkers.push({ 'workerName': worker }) | |
2691 | 2711 | |
2712 | + console.log('before worker call BRID: ' + bodyRegionId) | |
2692 | 2713 | |
2693 | - if (canvasId.match('_MR')) { | |
2694 | - $rootScope.updatedGrayMRDataList[bodyRegionId] = updatedData; | |
2714 | + //if (grayImageDataVar != null && coloredImageDataVar != null && maskData != null) { | |
2715 | + if (grayImageDataVar != null && coloredImageDataVar != null && maskData != null && TermList != undefined && TermList.length > 0) { | |
2716 | + worker.postMessage({ | |
2695 | 2717 | |
2718 | + 'termList': TermList, | |
2719 | + 'maskCanvasData': maskData, | |
2720 | + 'coloredImageData': coloredImageDataVar, | |
2721 | + 'grayImageData': grayImageDataVar, | |
2722 | + 'bodyRegionId': bodyRegionId, | |
2723 | + 'canvasId': canvasId | |
2724 | + | |
2725 | + }); | |
2726 | + } | |
2727 | + else { | |
2728 | + $('#spinner').css('visibility', 'hidden') | |
2729 | + $rootScope.isLoading = false; | |
2696 | 2730 | } |
2697 | - else | |
2698 | - $rootScope.updatedGrayDataList[bodyRegionId - 1] = updatedData; | |
2699 | 2731 | |
2700 | 2732 | |
2701 | - console.log('$scope.highlightedBR.length= ' + $scope.highlightedBR.length) | |
2733 | + worker.onmessage = function (e) { | |
2734 | + console.log('callback for e.data.bodyRegionId: ' + e.data.bodyRegionId + ', time: ' + new Date().toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1")); | |
2702 | 2735 | |
2703 | - if ($scope.highlightedBR != null || $scope.highlightedBR != undefined) { | |
2736 | + var updatedData = e.data.value; | |
2737 | + | |
2738 | + var bodyRegionId = e.data.bodyRegionId; | |
2739 | + var canvasId = (e.data.canvasId).replace('_mci', ''); | |
2740 | + | |
2741 | + var grayCanvasID = canvasId; | |
2742 | + | |
2743 | + | |
2744 | + var grayCanvas = document.getElementById(grayCanvasID); | |
2745 | + if (grayCanvas != null) { | |
2746 | + var grayCanvasContext = grayCanvas.getContext("2d"); | |
2747 | + | |
2748 | + var canvasHeight = grayCanvas.height + 'px'; | |
2749 | + var canvasWidth = grayCanvas.width + 'px'; | |
2750 | + grayCanvasContext.clearRect(0, 0, canvasHeight, canvasWidth) | |
2751 | + | |
2752 | + grayCanvasContext.putImageData(updatedData, 0, 0); | |
2753 | + $scope.highlightedBR.push({ 'bodyRegionId': bodyRegionId }); | |
2704 | 2754 | |
2705 | - if ((($rootScope.viewOrientationId == '1') || ($rootScope.viewOrientationId == '4')) && ($scope.highlightedBR.length == 9)) { | |
2706 | - $scope.doAligneCanvasWithTerm = true; | |
2707 | - } | |
2708 | - else if ((($rootScope.viewOrientationId == '2') || ($rootScope.viewOrientationId == '3')) && ($scope.highlightedBR.length == 5)) { | |
2709 | - $scope.doAligneCanvasWithTerm = true; | |
2710 | - } | |
2711 | - else if ((($rootScope.viewOrientationId == '5')) && ($scope.highlightedBR.length == 1)) { | |
2712 | - $scope.doAligneCanvasWithTerm = true; | |
2713 | 2755 | } |
2714 | - else if ((($rootScope.viewOrientationId == '6')) && ($scope.highlightedBR.length == 1)) { | |
2715 | - $scope.doAligneCanvasWithTerm = true; | |
2756 | + | |
2757 | + | |
2758 | + | |
2759 | + if (canvasId.match('_MR')) { | |
2760 | + $rootScope.updatedGrayMRDataList[bodyRegionId] = updatedData; | |
2761 | + | |
2716 | 2762 | } |
2717 | - if ($scope.doAligneCanvasWithTerm == true) { | |
2763 | + else | |
2764 | + $rootScope.updatedGrayDataList[bodyRegionId - 1] = updatedData; | |
2765 | + | |
2766 | + | |
2767 | + console.log('$scope.highlightedBR.length= ' + $scope.highlightedBR.length) | |
2718 | 2768 | |
2719 | - if ($rootScope.isListManagerSelected == true) { | |
2720 | - $scope.aligneCanvasWithTerm(); | |
2769 | + if ($scope.highlightedBR != null || $scope.highlightedBR != undefined) { | |
2770 | + | |
2771 | + if ((($rootScope.viewOrientationId == '1') || ($rootScope.viewOrientationId == '4')) && ($scope.highlightedBR.length == 9)) { | |
2772 | + $scope.doAligneCanvasWithTerm = true; | |
2773 | + } | |
2774 | + else if ((($rootScope.viewOrientationId == '2') || ($rootScope.viewOrientationId == '3')) && ($scope.highlightedBR.length == 5)) { | |
2775 | + $scope.doAligneCanvasWithTerm = true; | |
2776 | + } | |
2777 | + else if ((($rootScope.viewOrientationId == '5')) && ($scope.highlightedBR.length == 1)) { | |
2778 | + $scope.doAligneCanvasWithTerm = true; | |
2721 | 2779 | } |
2722 | - else if ($rootScope.previousHighlightList != undefined && $rootScope.previousHighlightList.length > 0 && ($scope.isGenderChnage == true || $scope.isViewChange == true)) { | |
2723 | - var canvasDiv = document.getElementById('canvasDiv'); | |
2724 | - if ($rootScope.viewOrientationId == '1' || $rootScope.viewOrientationId == '4') { | |
2780 | + else if ((($rootScope.viewOrientationId == '6')) && ($scope.highlightedBR.length == 1)) { | |
2781 | + $scope.doAligneCanvasWithTerm = true; | |
2782 | + } | |
2783 | + if ($scope.doAligneCanvasWithTerm == true) { | |
2725 | 2784 | |
2726 | - $('#canvasDiv').scrollLeft($('#canvasDiv').width() / 2) | |
2785 | + if ($rootScope.isListManagerSelected == true) { | |
2786 | + $scope.aligneCanvasWithTerm(); | |
2787 | + } | |
2788 | + else if ($rootScope.previousHighlightList != undefined && $rootScope.previousHighlightList.length > 0 && ($scope.isGenderChnage == true || $scope.isViewChange == true)) { | |
2727 | 2789 | var canvasDiv = document.getElementById('canvasDiv'); |
2728 | - $('#canvasDiv').scrollTop($scope.imageVerticalScrollPosition); | |
2790 | + if ($rootScope.viewOrientationId == '1' || $rootScope.viewOrientationId == '4') { | |
2791 | + | |
2792 | + $('#canvasDiv').scrollLeft($('#canvasDiv').width() / 2) | |
2793 | + var canvasDiv = document.getElementById('canvasDiv'); | |
2794 | + $('#canvasDiv').scrollTop($scope.imageVerticalScrollPosition); | |
2795 | + } | |
2796 | + else { | |
2797 | + $('#canvasDiv').scrollTop($scope.imageVerticalScrollPosition); | |
2798 | + $('#canvasDiv').scrollLeft($scope.imageHorizontlScrollPosition); | |
2799 | + $rootScope.isLoading = false; | |
2800 | + } | |
2801 | + $('#spinner').css('visibility', 'hidden'); | |
2802 | + } | |
2803 | + //else if ($rootScope.isHighlightBodyByBodySystem == true || $rootScope.isListManagerSelected == true || $scope.isClickedOnBodyForHighlight | |
2804 | + // ) | |
2805 | + else if ($rootScope.isHighlightBodyByBodySystem == true || $rootScope.isListManagerSelected == true) { | |
2806 | + | |
2807 | + $rootScope.isLoading = false; | |
2808 | + | |
2809 | + $('#spinner').css('visibility', 'hidden'); | |
2729 | 2810 | } |
2811 | + | |
2730 | 2812 | else { |
2813 | + | |
2814 | + var canvasDiv = document.getElementById('canvasDiv'); | |
2731 | 2815 | $('#canvasDiv').scrollTop($scope.imageVerticalScrollPosition); |
2732 | 2816 | $('#canvasDiv').scrollLeft($scope.imageHorizontlScrollPosition); |
2733 | - $rootScope.isLoading = false; | |
2734 | 2817 | } |
2735 | - $('#spinner').css('visibility', 'hidden'); | |
2736 | - } | |
2737 | - //else if ($rootScope.isHighlightBodyByBodySystem == true || $rootScope.isListManagerSelected == true || $scope.isClickedOnBodyForHighlight | |
2738 | - // ) | |
2739 | - else if ($rootScope.isHighlightBodyByBodySystem == true || $rootScope.isListManagerSelected == true) { | |
2740 | 2818 | |
2741 | 2819 | $rootScope.isLoading = false; |
2742 | 2820 | |
2743 | 2821 | $('#spinner').css('visibility', 'hidden'); |
2744 | - } | |
2745 | - | |
2746 | - else { | |
2747 | - | |
2748 | - var canvasDiv = document.getElementById('canvasDiv'); | |
2749 | - $('#canvasDiv').scrollTop($scope.imageVerticalScrollPosition); | |
2750 | - $('#canvasDiv').scrollLeft($scope.imageHorizontlScrollPosition); | |
2751 | - } | |
2752 | - | |
2753 | - $rootScope.isLoading = false; | |
2754 | - | |
2755 | - $('#spinner').css('visibility', 'hidden'); | |
2756 | 2822 | |
2757 | 2823 | |
2758 | 2824 | |
2825 | + } | |
2759 | 2826 | } |
2760 | - } | |
2761 | - $('#canvasDiv').scrollLeft($('#canvasDiv').width() / 2); | |
2827 | + $('#canvasDiv').scrollLeft($('#canvasDiv').width() / 2); | |
2762 | 2828 | |
2763 | 2829 | |
2764 | - }; | |
2765 | - worker.onerror = function (e) { | |
2766 | - alert('Error: Line ' + e.lineno + ' in ' + e.filename + ': ' + e.message); | |
2767 | - }; | |
2830 | + }; | |
2831 | + worker.onerror = function (e) { | |
2832 | + alert('Error: Line ' + e.lineno + ' in ' + e.filename + ': ' + e.message); | |
2833 | + }; | |
2834 | + } | |
2768 | 2835 | } |
2769 | 2836 | } |
2770 | 2837 | }, 100) | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/data/json/da/body-views/1/bodyLayers.json
0 โ 100644
1 | +[{"layerNumber":224,"bodyRegionId":1,"terms":[{"TermNumber":205398,"SystemNumbers":[2],"PixelLocations":[390904,391388,392296,392780,393684,393688,394172,395076,395080,395564,395568,396464,396468,396472,396956,396960,397852,397856,397860,397864,398348,398352,399236,399240,399244,399248,399252,399256,399740,399744,399748,400624,400628,400632,400636,400640,400644,400648,400652,401132,401136,401140,402012,402016,402020,402024,402028,402032,402036,402040,402044,402524,402528,402532,403400,403404,403408,403412,403416,403420,403424,403428,403432,403436,403440,403916,403920,403924,404792,404796,404800,404804,404808,404812,404816,404820,404824,404828,404832,405308,405312,405316,405320,406184,406188,406192,406196,406200,406204,406208,406212,406216,406220,406224,406228,406700,406704,406708,406712,407572,407576,407580,407584,407588,407592,407596,407600,407604,407608,407612,407616,407620,408092,408096,408100,408104,408108,408960,408964,408968,408972,408976,408980,408984,408988,408992,408996,409000,409004,409008,409012,409484,409488,409492,409496,409500,409504,409508,409512,409516,409520,410348,410352,410356,410360,410364,410368,410372,410376,410380,410384,410388,410392,410396,410400,410404,410876,410880,410884,410888,410892,410896,410900,410904,411740,411744,411748,411752,411756,411760,411764,411768,411772,411776,411780,411784,411788,411792,411796,412268,412272,412276,412280,412284,412288,412292,412296,413140,413144,413148,413152,413156,413160,413164,413168,413172,413176,413180,413184,413188,413660,413664,413668,413672,413676,413680,413684,413688,413692,414396,414400,414520,414536,414556,414560,414564,414568,414572,414576,414580,415052,415056,415060,415064,415068,415072,415076,415080,415084,415784,415788,415792,415796,415800,415804,415808,415812,415952,415956,415960,415964,415968,415972,416444,416448,416452,416456,416460,416464,416468,416472,416476,417172,417176,417180,417184,417188,417192,417196,417200,417204,417208,417296,417300,417344,417348,417352,417356,417360,417364,417836,417840,417844,417860,417864,417868,417872,418564,418568,418572,418576,418580,418584,418588,418592,418596,418600,418688,418736,418740,418744,418748,418752,418756,419228,419232,419236,419256,419260,419264,419268,419384,419388,419392,419396,419400,419404,419956,419960,419964,419968,419972,419976,419980,419984,419988,419992,420080,420128,420132,420136,420140,420144,420148,420620,420624,420628,420652,420656,420660,420664,420768,420772,420776,420780,420784,420788,420792,420796,421348,421352,421356,421360,421364,421368,421372,421376,421380,421384,421472,421520,421524,421528,421532,421536,421540,422012,422016,422020,422044,422048,422052,422056,422156,422160,422164,422168,422172,422176,422180,422184,422188,422192,422740,422744,422748,422752,422756,422760,422764,422768,422772,422776,422780,422864,422912,422916,422920,422924,422928,422932,423404,423408,423412,423440,423444,423448,423548,423552,423556,423560,423564,423568,423572,423576,423580,423584,424132,424136,424140,424144,424148,424152,424156,424160,424164,424168,424172,424256,424304,424308,424312,424316,424320,424800,424804,424832,424836,424844,424848,424936,424940,424944,424948,424952,424956,424960,424964,424968,424972,424976,424980,425524,425528,425532,425536,425540,425544,425548,425552,425556,425560,425564,425644,425648,425652,425656,425660,425664,425668,425672,425676,425680,425688,425692,425696,425700,425704,425708,425712,425716,426192,426196,426220,426224,426228,426328,426332,426336,426340,426344,426348,426352,426356,426360,426364,426368,426372,426376,426916,426920,426924,426928,426932,426936,426940,426944,426948,426952,426956,427036,427040,427044,427048,427052,427056,427060,427064,427068,427072,427076,427080,427084,427088,427092,427096,427100,427104,427108,427584,427588,427608,427612,427616,427620,427720,427724,427728,427732,427736,427740,427744,427748,427752,427756,427760,427764,427768,428308,428312,428316,428320,428324,428328,428332,428336,428340,428344,428348,428428,428432,428436,428440,428444,428448,428452,428456,428460,428464,428468,428472,428476,428480,428484,428488,428492,428496,428500,428976,428980,428984,428988,428992,428996,429000,429004,429008,429012,429112,429116,429120,429124,429128,429132,429136,429140,429144,429148,429152,429156,429160,429704,429708,429712,429716,429720,429724,429728,429732,429736,429820,429824,429828,429832,429836,429840,429844,429848,429852,429856,429860,429864,429868,429872,429876,429880,429884,429888,429892,430368,430372,430376,430380,430384,430388,430392,430396,430400,430404,430504,430508,430512,430516,430520,430524,430528,430532,430536,430540,430544,430548,430552,431096,431100,431104,431108,431112,431116,431120,431124,431128,431212,431216,431220,431224,431228,431232,431236,431240,431244,431248,431252,431256,431260,431264,431268,431272,431276,431280,431284,431760,431764,431768,431772,431776,431780,431784,431788,431792,431796,431800,431900,431904,431908,431912,431916,431920,431924,431928,431932,431936,431940,431944,432488,432492,432496,432500,432504,432508,432512,432516,432520,432604,432608,432612,432616,432620,432624,432628,432632,432636,432640,432644,432648,432652,432656,432660,432664,432668,432672,432676,433156,433160,433164,433168,433172,433176,433180,433184,433188,433192,433296,433300,433304,433308,433312,433316,433320,433324,433328,433332,433336,433880,433884,433888,433892,433896,433900,433904,433908,433912,433992,433996,434000,434004,434008,434012,434016,434020,434024,434028,434032,434036,434040,434044,434048,434052,434056,434060,434064,434548,434552,434556,434560,434564,434568,434572,434576,434580,434584,434588,434592,434596,434688,434692,434696,434700,434704,434708,434712,434716,434720,434724,434728,435272,435276,435280,435284,435288,435292,435296,435300,435304,435384,435388,435392,435396,435400,435404,435408,435412,435416,435420,435424,435428,435432,435436,435440,435444,435448,435452,435456,435940,435944,435948,435952,435956,435960,435964,435968,435972,435976,435980,435984,435988,435992,436080,436084,436088,436092,436096,436100,436104,436108,436112,436116,436120,436664,436668,436672,436676,436680,436684,436688,436692,436696,436776,436780,436784,436788,436792,436796,436800,436804,436808,436812,436816,436820,436824,436828,436832,436836,436840,436844,436848,437336,437340,437344,437348,437352,437356,437360,437364,437368,437372,437376,437380,437384,437472,437476,437480,437484,437488,437492,437496,437500,437504,437508,437512,438056,438060,438064,438068,438072,438076,438080,438084,438088,438168,438172,438176,438180,438184,438188,438192,438196,438200,438204,438208,438212,438216,438220,438224,438228,438232,438236,438728,438732,438736,438740,438744,438748,438752,438756,438760,438764,438768,438772,438776,438780,438864,438868,438872,438876,438880,438884,438888,438892,438896,438900,438904,439452,439456,439460,439464,439468,439472,439476,439480,439560,439564,439568,439572,439576,439580,439596,439600,439604,439608,439612,439616,439620,439624,439628,440120,440124,440128,440132,440136,440140,440144,440148,440152,440168,440172,440252,440256,440260,440264,440268,440272,440276,440280,440284,440288,440292,440296,440848,440852,440856,440860,440864,440868,440872,440948,440952,440956,440960,440964,440968,440996,441000,441004,441008,441012,441016,441020,441512,441516,441520,441524,441528,441532,441536,441540,441560,441564,441648,441652,441656,441660,441664,441668,441672,441676,441680,441684,441688,442240,442244,442248,442252,442256,442260,442264,442340,442344,442348,442352,442356,442360,442388,442392,442396,442400,442404,442408,442904,442908,442912,442916,442920,442924,442928,442932,442956,443040,443044,443048,443052,443056,443060,443064,443068,443072,443076,443080,443632,443636,443640,443644,443648,443652,443656,443732,443736,443740,443744,443748,443752,443780,443784,443788,443792,443796,443800,444296,444300,444304,444308,444312,444316,444320,444324,444352,444432,444436,444440,444444,444448,444452,444456,444460,444464,444468,444472,445028,445032,445036,445040,445044,445124,445128,445132,445136,445140,445144,445172,445176,445180,445184,445188,445192,445688,445692,445696,445700,445704,445708,445712,445716,445744,445828,445832,445836,445840,445844,445848,445852,445856,445860,445864,446516,446520,446524,446528,446532,446536,446564,446568,446572,446576,446580,446584,447084,447088,447092,447096,447100,447104,447108,447136,447220,447224,447228,447232,447236,447240,447244,447248,447252,447256,447908,447912,447916,447920,447924,447928,447956,447960,447964,447968,447972,447976,448476,448480,448484,448488,448492,448496,448500,448504,448528,448612,448616,448620,448624,448628,448632,448636,448640,448644,448648,449300,449304,449308,449312,449316,449320,449348,449352,449356,449360,449364,449368,449868,449872,449876,449880,449884,449888,449892,449896,449912,449916,449920,450004,450008,450012,450016,450020,450024,450028,450032,450036,450688,450692,450696,450700,450704,450708,450712,450716,450720,450724,450728,450732,450736,450740,450744,450748,450752,450756,450760,451260,451264,451268,451272,451276,451280,451284,451288,451292,451296,451300,451304,451308,451312,451396,451400,451404,451408,451412,451416,451420,451424,452080,452084,452088,452092,452096,452100,452104,452108,452112,452116,452120,452124,452128,452132,452136,452140,452144,452148,452152,452652,452656,452660,452664,452668,452672,452676,452680,452684,452688,452692,452696,452700,452704,452792,452796,452800,452804,452808,452812,452816,453472,453476,453480,453484,453488,453492,453496,453500,453504,453508,453512,453516,453520,453524,453528,453532,453536,453540,453544,454044,454048,454052,454056,454060,454064,454068,454072,454076,454080,454084,454088,454092,454096,454100,454184,454188,454192,454196,454200,454204,454860,454864,454868,454872,454876,454880,454884,454888,454892,454896,454900,454904,454908,454912,454916,454920,454924,454928,454932,455436,455440,455444,455448,455452,455456,455460,455464,455468,455472,455476,455480,455484,455488,455492,455576,455580,455584,455588,455592,456252,456256,456260,456264,456268,456272,456276,456280,456284,456288,456292,456296,456300,456304,456308,456312,456316,456320,456324,456828,456832,456836,456840,456844,456848,456852,456856,456860,456864,456868,456872,456876,456880,456884,456972,456976,456980,457644,457648,457652,457656,457660,457664,457668,457672,457676,457680,457684,457688,457692,457696,457700,457704,457708,457712,457716,458224,458228,458232,458236,458240,458244,458248,458252,458256,458260,458264,458268,458272,458276,458280,459032,459036,459040,459044,459048,459052,459056,459060,459064,459068,459072,459076,459080,459084,459088,459092,459096,459100,459104,459616,459620,459624,459628,459632,459636,459640,459644,459648,459652,459656,459660,459664,459668,459672,459676,460424,460428,460432,460436,460440,460444,460448,460452,460456,460460,460464,460468,460472,460476,460480,460484,460488,460492,460496,461008,461012,461016,461020,461024,461028,461032,461036,461040,461044,461048,461052,461056,461060,461064,461068,461816,461820,461824,461828,461832,461836,461840,461844,461848,461852,461856,461860,461864,461868,461872,461876,461880,461884,462400,462404,462408,462412,462416,462420,462424,462428,462432,462436,462440,462444,462448,462452,462456,462460,463208,463212,463216,463220,463224,463228,463232,463236,463240,463244,463248,463252,463256,463260,463264,463268,463272,463276,463792,463796,463800,463804,463808,463812,463816,463820,463824,463828,463832,463836,463840,463844,463848,463852,464600,464604,464608,464612,464616,464620,464624,464628,464632,464636,464640,464644,464648,464652,464656,464660,464664,464668,465184,465188,465192,465196,465200,465204,465208,465212,465216,465220,465224,465228,465232,465236,465240,465244,465988,465992,465996,466000,466004,466008,466012,466016,466020,466024,466028,466032,466036,466040,466044,466048,466052,466056,466060,466580,466584,466588,466592,466596,466600,466604,466608,466612,466628,466632,466636,466640,467376,467380,467384,467388,467392,467408,467412,467416,467420,467424,467428,467432,467436,467440,467444,467448,467972,467976,467980,467984,467988,467992,467996,468000,468004,468024,468028,468032,468768,468772,468776,468780,468800,468804,468808,468812,468816,468820,468824,468828,468832,468836,468840,469364,469368,469372,469376,469380,469384,469388,469392,469396,469420,469424,470160,470164,470168,470172,470196,470200,470204,470208,470212,470216,470220,470224,470228,470232,470756,470760,470764,470768,470772,470776,470780,470784,470788,470816,470820,471560,471588,471592,471596,471600,471604,471608,471612,471616,471620,472148,472152,472156,472160,472164,472168,472172,472176,472180,472208,472212,472952,472980,472984,472988,472992,472996,473000,473004,473008,473012,473540,473544,473548,473552,473556,473560,473564,473568,473572,473600,473604,473608,474344,474372,474376,474380,474384,474388,474392,474396,474400,474404,474932,474936,474940,474944,474948,474952,474956,474960,474964,474968,474992,474996,475000,475736,475760,475764,475768,475772,475776,475780,475784,475788,475792,476328,476332,476336,476340,476344,476348,476352,476356,476360,476364,476384,476388,476392,477128,477152,477156,477160,477164,477168,477172,477176,477180,477184,477720,477724,477728,477732,477736,477740,477744,477748,477752,477756,477760,477776,477780,477784,477788,477804,478496,478520,478544,478548,478552,478556,478560,478564,478568,478572,478576,479116,479120,479124,479128,479132,479136,479140,479144,479148,479152,479156,479160,479164,479168,479172,479176,479180,479184,479188,479192,479196,479888,479904,479908,479912,479916,479932,479936,479940,479944,479948,479952,479956,479960,479964,479968,480512,480516,480520,480524,480528,480532,480536,480540,480544,480548,480552,480556,480560,480564,480568,480572,480576,480580,480584,480588,481280,481284,481292,481296,481300,481304,481308,481312,481316,481320,481324,481328,481332,481336,481340,481344,481348,481352,481356,481360,481904,481908,481912,481916,481920,481924,481928,481932,481936,481940,481944,481948,481952,481956,481960,481964,481968,481972,481976,481980,482672,482676,482680,482684,482688,482692,482696,482700,482704,482708,482712,482716,482720,482724,482728,482732,482736,482740,482744,482748,482752,483296,483300,483304,483308,483312,483316,483320,483324,483328,483332,483336,483340,483344,483368,483372,484064,484068,484072,484076,484080,484084,484088,484092,484096,484100,484104,484108,484112,484116,484120,484124,484128,484132,484136,484140,484688,484692,484696,484700,484704,484708,484712,484716,484720,484724,484728,484732,484736,484760,484764,485456,485460,485464,485468,485472,485476,485480,485484,485488,485492,485496,485500,485504,485508,485512,485516,485520,485524,485528,485532,486080,486084,486088,486092,486096,486100,486104,486108,486112,486116,486120,486124,486128,486152,486156,486848,486852,486856,486860,486864,486868,486872,486876,486880,486884,486888,486892,486896,486900,486904,486908,486912,486916,486920,486924,487472,487476,487480,487484,487488,487492,487496,487500,487504,487508,487512,487516,487520,487544,487548,487552,488240,488244,488248,488252,488256,488260,488264,488268,488272,488276,488280,488284,488288,488292,488296,488300,488304,488308,488312,488864,488868,488872,488876,488880,488884,488888,488892,488896,488900,488904,488908,488912,488936,488940,488944,489632,489636,489640,489644,489648,489652,489656,489660,489664,489668,489672,489676,489680,489684,489688,489692,489696,489700,489704,490256,490260,490264,490268,490272,490276,490280,490284,490288,490292,490296,490300,490304,490308,490324,490328,490332,490336,491024,491028,491032,491036,491040,491044,491048,491052,491056,491060,491064,491068,491072,491076,491080,491084,491088,491092,491096,491652,491656,491660,491664,491668,491672,491676,491680,491684,491688,491692,491696,491700,491704,491716,491720,491724,491728,492416,492420,492424,492428,492432,492436,492440,492444,492448,492452,492456,492460,492464,492468,492472,492476,492480,492484,493044,493048,493052,493056,493060,493064,493068,493072,493076,493080,493084,493088,493092,493096,493100,493104,493108,493112,493116,493120,493808,493812,493816,493820,493824,493828,493832,493836,493840,493844,493848,493852,493856,493860,493864,493868,493872,493876,494436,494440,494444,494448,494452,494456,494460,494464,494468,494472,494476,494480,494484,494488,494492,494496,494500,494504,494508,494512,495200,495204,495208,495212,495216,495220,495224,495228,495232,495236,495240,495244,495248,495252,495256,495260,495264,495268,495832,495836,495840,495844,495848,495852,495856,495860,495864,495868,495872,495876,495880,495884,495888,495892,495896,495900,495904,496592,496596,496600,496604,496608,496612,496616,496620,496624,496628,496632,496636,496640,496644,496648,496652,496656,496660,497228,497232,497236,497240,497244,497248,497252,497256,497260,497264,497268,497272,497276,497280,497284,497288,497292,497296,497984,497988,497992,497996,498000,498004,498008,498012,498016,498020,498024,498028,498032,498036,498040,498044,498048,498620,498624,498628,498632,498636,498640,498644,498648,498652,498656,498660,498664,498668,498672,498676,498680,498684,498688,499372,499376,499380,499384,499388,499392,499396,499400,499404,499408,499412,499416,499420,499424,499428,499432,499436,499440,500012,500016,500020,500024,500028,500032,500036,500040,500044,500048,500052,500056,500060,500064,500068,500072,500076,500080,500768,500772,500776,500780,500784,500788,500792,500796,500800,500804,500808,500812,500816,500820,500824,500828,501404,501408,501412,501416,501420,501424,501428,501432,501436,501440,501444,501448,501452,501456,501460,501464,501468,501472,502164,502168,502172,502176,502180,502184,502188,502192,502196,502200,502204,502208,502212,502216,502220,502796,502800,502804,502808,502812,502816,502820,502824,502828,502832,502836,502840,502844,502848,502852,502856,502860,502864,503560,503564,503568,503572,503576,503580,503584,503588,503592,503596,503600,503604,503608,503612,504196,504200,504204,504208,504212,504216,504220,504224,504228,504232,504236,504240,504244,504248,504252,504256,504956,504960,504964,504968,504972,504976,504980,504984,504988,504992,504996,505000,505588,505592,505596,505600,505604,505608,505612,505616,505620,505624,505628,505632,505636,505640,505644,505648,506348,506352,506356,506360,506364,506368,506372,506376,506380,506384,506388,506392,506980,506984,506988,506992,506996,507000,507004,507008,507012,507016,507020,507024,507028,507032,507036,507740,507744,507748,507752,507756,507760,507764,507768,507772,507776,507780,507784,508376,508380,508384,508388,508392,508396,508400,508404,508408,508412,508416,508420,508424,509136,509140,509144,509148,509152,509156,509160,509164,509168,509172,509176,509768,509772,509776,509780,509784,509788,509792,509796,509800,509804,509808,509812,509816,510528,510532,510536,510540,510544,510548,510552,510556,510560,510564,511160,511164,511168,511172,511176,511180,511184,511188,511192,511196,511200,511204,511920,511924,511928,511932,511936,511940,511944,511948,511952,511956,512556,512560,512564,512568,512572,512576,512580,512584,512588,512592,512596,513316,513320,513324,513328,513332,513336,513340,513344,513348,513952,513956,513960,513964,513968,513972,513976,513980,513984,513988,514708,514712,514716,514720,514724,514728,514732,514736,515344,515348,515352,515356,515360,515364,515368,515372,515376,515380,516100,516104,516108,516112,516116,516120,516124,516128,516740,516744,516748,516752,516756,516760,516764,516768,517496,517500,517504,517508,517512,517516,517520,518132,518136,518140,518144,518148,518152,518156,518160,518888,518892,518896,518900,518904,518908,519524,519528,519532,519536,519540,519544,519548,520280,520284,520288,520292,520296,520300,520920,520924,520928,520932,520936,520940,521672,521676,521680,521684,522316,522320,522324,522328,523064,523068,523072,523076,523712,523716,523720,524456,524460,524464,525848,525852],"ActualTermNumber":0}]}, | |
2 | +{"layerNumber":224,"bodyRegionId":2,"terms":[{"TermNumber":203999,"SystemNumbers":[2],"PixelLocations":[3508,10320,12588,14856,17120,17124,19372,19388,21640,23904,26172,28440,30708,32976,33000,35244,35268,37512,37532,37536,39780,39800,39804,42044,42048,42068,42072,44312,44316,44336,44340,46580,46604,46608,48872,48876,51140,51144,53408,53412,55676,55680,57944,57948,60212,60216,62480,62484,62488,64748,64752,64756,67016,67020,67024,69284,69288,69292,71552,71556,71560,73820,73824,73828,76088,76092,76096,78356,78360,78364,80624,80628,80632,82892,82896,82900,85160,85164,85168,87428,87432,89672,89696,91940,94208,96476,98744,101012,103280,103312,105548,105576,105580,107816,107840,107844,107848,110084,110108,110112,110116,112352,112376,112380,112384,114620,114644,114648,114652,116888,116912,116916,116920,119156,119176,119180,119184,119188,121424,121444,121448,123692,123712,547776,547780,547784,547788,547792,547796,549944,549948,549992,549996,550000,550004,550008,550012,550016,550020,550024,550044,550048,550052,550056,550060,550064,552208,552212,552232,552260,552264,552268,552272,552276,552280,552284,552288,552292,552312,552316,552320,552324,552328,552332,554472,554476,554496,554500,554504,554532,554536,554540,554544,554548,554552,554556,554560,554580,554584,554588,554592,554596,554600,556724,556728,556732,556736,556740,556760,556764,556768,556772,556776,556780,556784,556808,556812,556816,556820,556824,556828,556848,556852,556856,556860,556864,558992,558996,559000,559004,559008,559024,559028,559032,559036,559040,559044,559048,559052,559056,559076,559080,559084,559088,559092,559096,559116,559120,559124,559128,559132,561264,561268,561272,561288,561292,561296,561300,561304,561308,561312,561316,561320,561324,561328,561348,561352,561356,561360,561364,561368,561388,561392,561396,563536,563552,563556,563560,563564,563568,563572,563576,563580,563584,563588,563592,563596,563600,563620,563624,563628,563632,563636,563640,565820,565824,565828,565832,565836,565840,565844,565848,565852,565856,565860,565864,565868,565892,565896,565900,565904,565908,565940,568052,568088,568092,568096,568100,568104,568108,568112,568116,568120,568124,568128,568132,568136,568140,568164,568168,568172,568176,568180,568208,570320,570324,570352,570356,570360,570364,570368,570372,570376,570380,570384,570388,570392,570396,570400,570404,570408,570472,570476,570480,572588,572592,572616,572620,572624,572628,572632,572636,572640,572644,572648,572652,572656,572660,572664,572668,572672,572676,572740,572744,572748,574856,574860,574864,574884,574888,574892,574896,574900,574904,574908,574912,574916,574920,574924,574928,574932,574936,574940,574944,574960,575008,575012,575016,577124,577128,577132,577152,577156,577160,577164,577168,577172,577176,577180,577184,577188,577192,577196,577200,577204,577208,577228,577232,577276,577280,577284,579392,579396,579400,579420,579424,579428,579432,579436,579440,579444,579448,579452,579456,579460,579464,579468,579472,579476,579496,579500,579504,579544,579548,579552,581656,581660,581664,581668,581672,581688,581692,581696,581700,581704,581708,581712,581716,581720,581724,581728,581732,581736,581740,581744,581764,581768,581772,581812,581816,581820,583924,583928,583932,583936,583940,583956,583960,583964,583968,583972,583976,583980,583984,583988,583992,583996,584000,584004,584008,584012,584032,584036,584040,584060,584064,584080,584084,586192,586196,586200,586204,586208,586224,586228,586232,586236,586240,586244,586248,586252,586256,586260,586264,586268,586272,586276,586280,586300,586304,586308,586328,586332,586348,586352,588460,588464,588468,588472,588476,588492,588496,588500,588504,588508,588512,588516,588520,588524,588528,588532,588536,588540,588544,588564,588568,588572,588576,588596,588600,588616,588620,590728,590732,590736,590740,590744,590760,590764,590768,590772,590776,590780,590784,590788,590792,590796,590800,590804,590808,590812,590832,590836,590840,590860,590864,590868,590884,590888,592996,593000,593004,593008,593012,593028,593032,593036,593040,593044,593048,593052,593056,593060,593064,593068,593072,593076,593080,593100,593104,593108,593128,593132,593136,593152,593156,595264,595268,595272,595276,595280,595296,595300,595304,595308,595312,595316,595320,595324,595328,595332,595336,595340,595344,595348,595364,595368,595372,595376,595396,595400,595404,595420,595424,597532,597536,597540,597544,597548,597564,597568,597572,597576,597580,597584,597588,597592,597596,597600,597604,597608,597612,597632,597636,597640,597660,597664,597668,597672,597688,597692,597696,599800,599804,599808,599812,599816,599832,599836,599840,599844,599848,599852,599856,599860,599864,599868,599872,599876,599880,599900,599904,599908,599924,599928,599932,599936,599940,599956,599960,599964,602068,602072,602076,602080,602084,602100,602104,602108,602112,602116,602120,602124,602128,602132,602136,602140,602144,602148,602168,602172,602176,602192,602196,602200,602204,602208,602228,602232,604336,604340,604344,604348,604352,604368,604372,604376,604380,604384,604388,604392,604396,604400,604404,604408,604412,604436,604440,604444,604460,604464,604468,604472,604476,604480,604496,604500,606604,606608,606612,606616,606620,606636,606640,606644,606648,606652,606656,606660,606664,606668,606672,606676,606680,606700,606704,606708,606712,606728,606732,606736,606740,606744,606748,606764,606768,608872,608876,608880,608884,608888,608904,608908,608912,608916,608920,608924,608928,608932,608936,608940,608944,608948,608968,608972,608976,608980,608996,609000,609004,609008,609012,609016,609032,609036,611144,611148,611152,611172,611176,611180,611184,611188,611192,611196,611200,611204,611208,611212,611232,611236,611240,611244,611260,611264,611268,611272,611276,611280,611284,611304,613412,613416,613420,613440,613444,613448,613452,613456,613460,613464,613468,613472,613476,613480,613496,613500,613504,613508,613512,613528,613532,613536,613540,613544,613548,613552,615684,615688,615708,615712,615716,615720,615724,615728,615732,615736,615740,615744,615748,615764,615768,615772,615776,615780,615792,615796,615800,615804,615808,615812,615816,615820,615824,617952,617956,617976,617980,617984,617988,617992,617996,618000,618004,618008,618012,618016,618032,618036,618040,618044,618060,618064,618068,618072,618076,618080,618084,618088,618092,618096,620220,620224,620244,620248,620252,620256,620260,620264,620268,620272,620276,620280,620300,620304,620308,620312,620328,620332,620336,620340,620344,620348,620352,620356,620360,620364,622488,622492,622512,622516,622520,622524,622528,622532,622536,622540,622544,622548,622568,622572,622576,622596,622600,622604,622608,622612,622616,622620,622624,622628,622632,622636,624780,624784,624788,624792,624796,624800,624804,624808,624812,624836,624840,624844,624860,624864,624868,624872,624876,624880,624884,624888,624892,624896,624900,624904,627048,627052,627056,627060,627064,627068,627072,627076,627080,627100,627104,627108,627112,627128,627132,627136,627140,627144,627148,627152,627156,627160,627164,627168,627172,627176,629316,629320,629324,629328,629332,629336,629340,629344,629368,629372,629376,629380,629396,629400,629404,629408,629412,629416,629420,629424,629428,629432,629436,629440,629444,629448,631568,631584,631588,631592,631596,631600,631604,631608,631612,631632,631636,631640,631644,631648,631664,631668,631672,631676,631680,631684,631688,631692,631696,631700,631704,631708,631712,631716,633836,633852,633856,633860,633864,633868,633872,633876,633880,633896,633900,633904,633908,633912,633916,633932,633936,633940,633944,633948,633952,633956,633960,633964,633968,633972,633976,633980,633984,636104,636108,636120,636124,636128,636132,636136,636140,636144,636148,636164,636168,636172,636176,636180,636184,636200,636204,636208,636212,636216,636220,636224,636228,636232,636236,636240,636244,636248,636252,638368,638372,638376,638392,638396,638400,638404,638408,638412,638416,638432,638436,638440,638444,638448,638468,638472,638476,638480,638484,638488,638492,638496,638500,638504,638508,638512,638516,638520,640636,640640,640644,640660,640664,640668,640672,640676,640680,640700,640704,640708,640712,640716,640732,640736,640740,640744,640748,640752,640756,640760,640764,640768,640772,640776,640780,640784,640788,642904,642908,642912,642928,642932,642936,642940,642944,642948,642968,642972,642976,642980,642984,643000,643004,643008,643012,643016,643020,643024,643028,643032,643036,643040,643044,643048,643052,643056,645168,645172,645176,645180,645196,645200,645204,645208,645212,645216,645232,645236,645240,645244,645248,645252,645268,645272,645276,645280,645284,645288,645292,645296,645300,645304,645308,645312,645316,645320,645324,647432,647436,647440,647444,647448,647464,647468,647472,647476,647480,647500,647504,647508,647512,647516,647536,647540,647544,647548,647552,647556,647560,647564,647568,647572,647576,647580,647584,647588,647592,649700,649704,649708,649712,649716,649732,649736,649740,649744,649748,649764,649768,649772,649776,649780,649784,649804,649808,649812,649816,649820,649824,649828,649832,649836,649840,649844,649848,649852,649856,649860,651968,651972,651976,651980,651984,651988,652004,652008,652012,652028,652032,652036,652040,652044,652048,652052,652068,652072,652076,652080,652084,652088,652092,652096,652100,652104,652108,652112,652116,652120,652124,652128,654232,654236,654240,654244,654248,654252,654256,654272,654276,654280,654296,654300,654304,654308,654312,654316,654320,654336,654340,654344,654348,654352,654356,654360,654364,654368,654372,654376,654380,654384,654388,654392,654396,656496,656500,656504,656508,656512,656516,656520,656524,656540,656544,656548,656564,656568,656572,656576,656580,656584,656604,656608,656612,656616,656620,656624,656628,656632,656636,656640,656644,656648,656652,656656,656660,656664,658764,658768,658772,658776,658780,658784,658788,658792,658808,658812,658828,658832,658836,658840,658844,658848,658852,658868,658872,658876,658880,658884,658888,658892,658896,658900,658904,658908,658912,658916,658920,658924,658928,661032,661036,661040,661044,661048,661052,661056,661060,661076,661080,661096,661100,661104,661108,661112,661116,661120,661136,661140,661144,661148,661152,661156,661160,661164,661168,661172,661176,661180,661184,661188,661192,661196,663300,663304,663308,663312,663316,663320,663324,663328,663344,663348,663364,663368,663372,663376,663380,663384,663388,663404,663408,663412,663416,663420,663424,663428,663432,663436,663440,663444,663448,663452,663456,663460,663464,665564,665568,665572,665576,665580,665584,665588,665592,665596,665612,665628,665632,665636,665640,665644,665648,665652,665656,665672,665676,665680,665684,665688,665692,665696,665700,665704,665708,665712,665716,665720,665724,665728,665732,667832,667836,667840,667844,667848,667852,667856,667860,667864,667896,667900,667904,667908,667912,667916,667920,667924,667940,667944,667948,667952,667956,667960,667964,667968,667972,667976,667980,667984,667988,667992,667996,668000,670100,670104,670108,670112,670116,670120,670124,670128,670132,670160,670164,670168,670172,670176,670180,670184,670188,670192,670208,670212,670216,670220,670224,670228,670232,670236,670240,670244,670248,670252,670256,670260,670264,670268,672368,672372,672376,672380,672384,672388,672392,672396,672400,672428,672432,672436,672440,672444,672448,672452,672456,672460,672476,672480,672484,672488,672492,672496,672500,672504,672508,672512,672516,672520,672524,672528,672532,672536,674636,674640,674644,674648,674652,674656,674660,674664,674668,674696,674700,674704,674708,674712,674716,674720,674724,674728,674744,674748,674752,674756,674760,674764,674768,674772,674776,674780,674784,674788,674792,674796,674800,674804,676904,676908,676912,676916,676920,676924,676928,676932,676936,676964,676968,676972,676976,676980,676984,676988,676992,676996,677012,677016,677020,677024,677028,677032,677036,677040,677044,677048,677052,677056,677060,677064,677068,677072,679172,679176,679180,679184,679188,679192,679196,679200,679204,679228,679232,679236,679240,679244,679248,679252,679256,679260,679280,679284,679288,679292,679296,679300,679304,679308,679312,679316,679320,679324,679328,679332,679336,679340,681440,681444,681448,681452,681456,681460,681464,681468,681472,681496,681500,681504,681508,681512,681516,681520,681524,681528,681548,681552,681556,681560,681564,681568,681572,681576,681580,681584,681588,681592,681596,681600,681604,681608,683708,683712,683716,683720,683724,683728,683732,683736,683740,683760,683764,683768,683772,683776,683780,683784,683788,683792,683796,683816,683820,683824,683828,683832,683836,683840,683844,683848,683852,683856,683860,683864,683868,683872,683876,685976,685980,685984,685988,685992,685996,686000,686004,686008,686028,686032,686036,686040,686044,686048,686052,686056,686060,686064,686080,686084,686088,686092,686096,686100,686104,686108,686112,686116,686120,686124,686128,686132,686136,686140,686144,688244,688248,688252,688256,688260,688264,688268,688272,688276,688296,688300,688304,688308,688312,688316,688320,688324,688328,688332,688348,688352,688356,688360,688364,688368,688372,688376,688380,688384,688388,688392,688396,688400,688404,688408,688412,690512,690516,690520,690524,690528,690532,690536,690540,690544,690564,690568,690572,690576,690580,690584,690588,690592,690596,690616,690620,690624,690628,690632,690636,690640,690644,690648,690652,690656,690660,690664,690668,690672,690676,690680,692780,692784,692788,692792,692796,692800,692804,692808,692812,692828,692832,692836,692840,692844,692848,692852,692856,692860,692864,692884,692888,692892,692896,692900,692904,692908,692912,692916,692920,692924,692928,692932,692936,692940,692944,695048,695052,695056,695060,695064,695068,695072,695076,695080,695096,695100,695104,695108,695112,695116,695120,695124,695128,695132,695152,695156,695160,695164,695168,695172,695176,695180,695184,695188,695192,695196,695200,695204,695208,695212,697316,697320,697324,697328,697332,697336,697340,697344,697348,697364,697368,697372,697376,697380,697384,697388,697392,697396,697400,697420,697424,697428,697432,697436,697440,697444,697448,697452,697456,697460,697464,697468,697472,697476,697480,699584,699588,699592,699596,699600,699604,699608,699612,699632,699636,699640,699644,699648,699652,699656,699660,699664,699688,699692,699696,699700,699704,699708,699712,699716,699720,699724,699728,699732,699736,699740,699744,699748,701852,701856,701860,701864,701868,701872,701876,701880,701900,701904,701908,701912,701916,701920,701924,701928,701932,701956,701960,701964,701968,701972,701976,701980,701984,701988,701992,701996,702000,702004,702008,702012,702016,704120,704124,704128,704132,704136,704140,704144,704148,704168,704172,704176,704180,704184,704188,704192,704196,704200,704224,704228,704232,704236,704240,704244,704248,704252,704256,704260,704264,704268,704272,704276,704280,704284,706388,706392,706396,706400,706404,706408,706412,706432,706436,706440,706444,706448,706452,706456,706460,706464,706468,706492,706496,706500,706504,706508,706512,706516,706520,706524,706528,706532,706536,706540,706544,706548,706552,708656,708660,708664,708668,708672,708676,708680,708700,708704,708708,708712,708716,708720,708724,708728,708732,708736,708760,708764,708768,708772,708776,708780,708784,708788,708792,708796,708800,708804,708808,708812,708816,708820,710924,710928,710932,710936,710940,710944,710948,710968,710972,710976,710980,710984,710988,710992,710996,711000,711004,711028,711032,711036,711040,711044,711048,711052,711056,711060,711064,711068,711072,711076,711080,711084,711088,713192,713196,713200,713204,713208,713212,713232,713236,713240,713244,713248,713252,713256,713260,713264,713268,713272,713300,713304,713308,713312,713316,713320,713324,713328,713332,713336,713340,713344,713348,713352,713356,715460,715464,715468,715472,715476,715480,715500,715504,715508,715512,715516,715520,715524,715528,715532,715536,715540,715568,715572,715576,715580,715584,715588,715592,715596,715600,715604,715608,715612,715616,715620,715624,717728,717732,717736,717740,717744,717748,717768,717772,717776,717780,717784,717788,717792,717796,717800,717804,717808,717824,717840,717844,717848,717852,717856,717860,717864,717868,717872,717876,717880,717884,717888,717892,719996,720000,720004,720008,720012,720016,720036,720040,720044,720048,720052,720056,720060,720064,720068,720072,720092,720108,720112,720116,720120,720124,720128,720132,720136,720140,720144,720148,720152,720156,720160,722264,722268,722272,722276,722280,722284,722300,722304,722308,722312,722316,722320,722324,722328,722332,722336,722340,722356,722360,722364,722380,722384,722388,722392,722396,722400,722404,722408,722412,722416,722420,722424,722428,724532,724536,724540,724544,724548,724552,724568,724572,724576,724580,724584,724588,724592,724596,724600,724604,724624,724628,724632,724636,724652,724656,724660,724664,724668,724672,724676,724680,724684,724688,724692,724696,726800,726804,726808,726812,726816,726820,726836,726840,726844,726848,726852,726856,726860,726864,726868,726892,726896,726900,726904,726920,726924,726928,726932,726936,726940,726944,726948,726952,726956,729068,729072,729076,729080,729084,729088,729104,729108,729112,729116,729120,729124,729128,729132,729156,729160,729164,729168,729172,729192,729196,729200,729204,729208,729212,729216,729220,729224,731336,731340,731344,731348,731352,731356,731372,731376,731380,731384,731388,731392,731396,731400,731424,731428,731432,731436,731440,731444,731460,731464,731468,731472,731476,731480,731484,731488,733612,733616,733620,733624,733640,733644,733648,733652,733656,733660,733692,733696,733700,733704,733708,733712,733716,733728,733732,733736,733740,733744,733748,733752,733756,735884,735888,735892,735908,735912,735916,735920,735924,735928,735956,735960,735964,735968,735972,735976,735980,735984,736000,736004,736008,736012,736016,736020,738152,738156,738160,738176,738180,738184,738188,738192,738224,738228,738232,738236,738240,738244,738248,738252,738256,738272,738276,738280,738284,738288,740444,740448,740452,740492,740496,740500,740504,740508,740512,740516,740520,740524,740540,740544,740548,740552,742676,742708,742712,742716,742720,742760,742764,742768,742772,742776,742780,742784,742788,742792,742808,742812,742816,742840,744944,744948,744976,744980,744984,745028,745032,745036,745040,745044,745048,745052,745056,745060,745064,745076,745080,745084,747212,747216,747220,747240,747244,747272,747292,747296,747300,747304,747308,747312,747316,747320,747324,747328,747332,747368,747372,749480,749484,749488,749508,749512,749536,749540,749560,749564,749568,749572,749576,749580,749584,749588,749592,749596,749600,749604,749636,749640,751748,751752,751756,751776,751800,751804,751808,751828,751832,751836,751840,751844,751848,751852,751856,751860,751864,751868,751872,751904,751908,754016,754020,754024,754064,754068,754072,754092,754096,754100,754104,754108,754112,754116,754120,754124,754128,754132,754136,754140,754144,754168,754172,754176,756284,756288,756292,756328,756332,756336,756340,756360,756364,756368,756372,756376,756380,756384,756388,756392,756396,756400,756404,756408,756432,756436,756440,756444,758552,758556,758560,758592,758596,758600,758604,758608,758628,758632,758636,758640,758644,758648,758652,758656,758660,758664,758668,758672,758676,758696,758700,758704,758708,760820,760824,760828,760856,760860,760864,760868,760872,760876,760892,760896,760900,760904,760908,760912,760916,760920,760924,760928,760932,760936,760964,760968,760972,763088,763092,763096,763124,763128,763132,763136,763140,763144,763160,763164,763168,763172,763176,763180,763184,763188,763192,763196,763200,763204,763232,763236,763240,765356,765360,765364,765388,765392,765396,765400,765404,765408,765412,765428,765432,765436,765440,765444,765448,765452,765456,765460,765464,765468,765472,765496,765500,765504,765508,767624,767628,767632,767656,767660,767664,767668,767672,767676,767696,767700,767704,767708,767712,767716,767720,767724,767728,767732,767760,767764,767768,767772,767776,767780,767784,769892,769896,769900,769920,769924,769928,769932,769936,769940,769944,769964,769968,769972,769976,769980,769984,769988,769992,769996,770024,770028,770032,770036,770040,770044,770048,770052,772160,772164,772168,772188,772192,772196,772200,772204,772208,772212,772228,772232,772236,772240,772244,772248,772252,772256,772260,772264,772292,772296,772300,772304,772308,772312,772316,772320,774428,774432,774436,774456,774460,774464,774468,774472,774476,774496,774500,774504,774508,774512,774516,774520,774524,774528,774552,774556,774560,774564,774568,774572,774576,774580,774584,776696,776700,776704,776720,776724,776728,776732,776736,776740,776744,776764,776768,776772,776776,776780,776784,776788,776792,776820,776824,776828,776832,776836,776840,776844,776848,776852,778964,778968,778972,778988,778992,778996,779000,779004,779008,779012,779032,779036,779040,779044,779048,779052,779056,779084,779088,779092,779096,779100,779104,779108,779112,779116,779120,781232,781236,781240,781256,781260,781264,781268,781272,781276,781296,781300,781304,781308,781312,781316,781320,781324,781352,781356,781360,781364,781368,781372,781376,781380,781384,781388,783500,783504,783508,783524,783528,783532,783536,783540,783544,783564,783568,783572,783576,783580,783584,783588,783616,783620,783624,783628,783632,783636,783640,783644,783648,783652,783656,785768,785772,785776,785792,785796,785800,785804,785808,785812,785832,785836,785840,785844,785848,785852,785880,785884,785888,785892,785896,785900,785904,785908,785912,785916,785920,785924,788036,788040,788044,788060,788064,788068,788072,788076,788080,788100,788104,788108,788112,788116,788144,788148,788152,788156,788160,788164,788168,788172,788176,788180,788184,788188,788192,790304,790308,790312,790328,790332,790336,790340,790344,790348,790368,790372,790376,790380,790384,790408,790412,790416,790420,790424,790428,790432,790436,790440,790444,790448,790452,790456,790460,792572,792576,792580,792596,792600,792604,792608,792612,792616,792632,792636,792640,792644,792648,792672,792676,792680,792684,792688,792692,792696,792700,792704,792708,792712,792716,792720,792724,792728,794840,794844,794848,794864,794868,794872,794876,794880,794900,794904,794908,794912,794936,794940,794944,794948,794952,794956,794960,794964,794968,794972,794976,794980,794984,794988,794992,794996,797108,797112,797116,797132,797136,797140,797144,797148,797168,797172,797176,797180,797204,797208,797212,797216,797220,797224,797228,797232,797236,797240,797244,797248,797252,797256,797260,797264,799376,799380,799384,799400,799404,799408,799412,799416,799436,799440,799444,799468,799472,799476,799480,799484,799488,799492,799496,799500,799504,799508,799512,799516,799520,799524,799528,799532,801644,801648,801652,801668,801672,801676,801680,801684,801704,801708,801712,801732,801736,801740,801744,801748,801752,801756,801760,801764,801768,801772,801776,801780,801784,801788,801792,801796,801800,803912,803916,803920,803936,803940,803944,803948,803952,803972,803976,804000,804004,804008,804012,804016,804020,804024,804028,804032,804036,804040,804044,804048,804052,804056,804060,804064,804068,806180,806184,806188,806204,806208,806212,806216,806220,806240,806244,806264,806268,806272,806276,806280,806284,806288,806292,806296,806300,806304,806308,806312,806316,806320,806324,806328,806332,806336,808448,808452,808456,808472,808476,808480,808484,808508,808532,808536,808540,808544,808548,808552,808556,808560,808564,808568,808572,808576,808580,808584,808588,808592,808596,808600,808604,810716,810720,810724,810740,810744,810748,810752,810772,810796,810800,810804,810808,810812,810816,810820,810824,810828,810832,810836,810840,810844,810848,810852,810856,810860,810864,810868,810872,812984,812988,812992,813008,813012,813016,813020,813040,813060,813064,813068,813072,813076,813080,813084,813088,813092,813096,813100,813104,813108,813112,813116,813120,813124,813128,813132,813136,813140,815252,815256,815260,815276,815280,815284,815288,815324,815328,815332,815336,815340,815344,815348,815352,815356,815360,815364,815368,815372,815376,815380,815384,815388,815392,815396,815400,815404,815408,817520,817524,817528,817544,817548,817552,817556,817592,817596,817600,817604,817608,817612,817616,817620,817624,817628,817632,817636,817640,817644,817648,817652,817656,817660,817664,817668,817672,817676,819788,819792,819796,819812,819816,819820,819824,819860,819864,819868,819872,819876,819880,819884,819888,819892,819896,819900,819904,819908,819912,819916,819920,819924,819928,819932,819936,819940,819944,822056,822060,822064,822080,822084,822088,822092,822128,822132,822136,822140,822144,822148,822152,822156,822160,822164,822168,822172,822176,822180,822184,822188,822192,822196,822200,822204,822208,824324,824328,824332,824348,824352,824356,824360,824392,824396,824400,824404,824408,824412,824416,824420,824424,824428,824432,824436,824440,824444,824448,824452,824456,824460,824464,824468,824472,824476,826592,826596,826600,826616,826620,826624,826628,826660,826664,826668,826672,826676,826680,826684,826688,826692,826696,826700,826704,826708,826712,826716,826720,826724,826728,826732,826736,826740,826744,826748,828860,828864,828868,828872,828884,828888,828892,828896,828924,828928,828932,828936,828940,828944,828948,828952,828956,828960,828964,828968,828972,828976,828980,828984,828988,828992,828996,829000,829004,829008,829012,829016,831128,831132,831136,831140,831152,831156,831160,831164,831192,831196,831200,831204,831208,831212,831216,831220,831224,831228,831232,831236,831240,831244,831248,831252,831256,831260,831264,831268,831272,831276,831280,831284,833396,833400,833404,833408,833420,833424,833428,833432,833460,833464,833468,833472,833476,833480,833484,833488,833492,833496,833500,833504,833508,833512,833516,833520,833524,833528,833532,833536,833540,833544,833548,833552,835664,835668,835672,835676,835692,835696,835724,835728,835732,835736,835740,835744,835748,835752,835756,835760,835764,835768,835772,835776,835780,835784,835788,835792,835796,835800,835804,835808,835812,835816,835820,837932,837936,837940,837944,837960,837992,837996,838000,838004,838008,838012,838016,838020,838024,838028,838032,838036,838040,838044,838048,838052,838056,838060,838064,838068,838072,838076,838080,838084,838088,840200,840204,840208,840212,840260,840264,840268,840272,840276,840280,840284,840288,840292,840296,840300,840304,840308,840312,840316,840320,840324,840328,840332,840336,840340,840344,840348,840352,840356,842468,842472,842476,842480,842532,842536,842540,842544,842548,842552,842556,842560,842564,842568,842572,842576,842580,842584,842588,842592,842596,842600,842604,842608,842612,842616,842620,842624,844740,844744,844748,844800,844804,844808,844812,844816,844820,844824,844828,844832,844836,844840,844844,844848,844852,844856,844860,844864,844868,844872,844876,844880,844884,844888,844892,844896,847016,847048,847068,847072,847076,847080,847084,847088,847092,847096,847100,847104,847108,847112,847116,847120,847124,847128,847132,847136,847140,847144,847148,847152,847156,847160,847164,849312,849316,849340,849344,849348,849352,849356,849360,849364,849368,849372,849376,849380,849384,849388,849392,849396,849400,849404,849408,849412,849416,849420,849424,851576,851580,851584,851588,851612,851616,851620,851624,851628,851632,851636,851640,851644,851648,851652,851656,851660,851664,851668,851672,851676,851680,851684,851688,853856,853880,853884,853888,853892,853896,853900,853904,853908,853912,853916,853920,853924,853928,853932,853936,853940,853944,853948,853952,853956,856168,856172,856176,856180,856184,856188,856192,856196,856200,856204,856208,856212,856216,858440,858444,858448,858452,858456,858460,858464,858468,858472,858476,858480,858484,860720,860724,860728,860732,860736,860740,860744,860748,1033240,1035504,1035508,1035512,1035516,1035520,1037768,1037772,1037776,1037780,1037784,1037788,1037792,1040028,1040032,1040036,1040040,1040044,1040048,1040052,1040056,1040060,1040064,1042296,1042300,1042304,1042308,1042312,1042316,1042320,1042324,1042328,1042332,1042336,1044564,1044568,1044572,1044576,1044580,1044584,1044588,1044592,1044596,1044600,1044604,1046828,1046832,1046836,1046840,1046844,1046848,1046852,1046856,1046860,1046864,1046868,1046872,1046876,1049100,1049104,1049108,1049112,1049116,1049120,1049124,1049128,1049132,1049136,1049140,1049144,1049148,1051368,1051372,1051376,1051380,1051384,1051388,1051392,1051396,1051400,1051404,1051408,1051412,1051416,1051420,1053640,1053644,1053648,1053652,1053656,1053660,1053664,1053668,1053672,1053676,1053680,1053684,1053688,1055912,1055916,1055920,1055924,1055928,1055932,1055936,1055940,1055944,1055948,1055952,1055956,1058140,1058144,1058184,1058188,1058192,1058196,1058200,1058204,1058208,1058212,1058216,1058220,1058224,1060400,1060404,1060408,1060412,1060416,1060420,1060456,1060460,1060464,1060468,1060472,1060476,1060480,1060484,1060488,1060492,1062668,1062672,1062676,1062680,1062684,1062688,1062728,1062732,1062736,1062740,1062744,1062748,1062752,1062756,1062760,1064932,1064936,1064940,1064944,1064948,1064952,1064956,1064996,1065000,1065004,1065008,1065012,1065016,1065020,1065024,1065028,1067192,1067196,1067200,1067204,1067208,1067212,1067216,1067220,1067224,1067228,1067232,1067268,1067272,1067276,1067280,1067284,1067288,1067292,1067296,1069460,1069464,1069468,1069472,1069476,1069480,1069484,1069488,1069492,1069496,1069500,1069504,1069540,1069544,1069548,1069552,1069556,1069560,1069564,1071724,1071728,1071732,1071736,1071740,1071744,1071748,1071752,1071756,1071760,1071764,1071768,1071772,1071808,1071812,1071816,1071820,1071824,1071828,1071832,1073984,1073988,1073992,1073996,1074000,1074004,1074008,1074012,1074016,1074020,1074024,1074028,1074032,1074036,1074040,1074044,1074080,1074084,1074088,1074092,1074096,1074100,1076252,1076256,1076260,1076264,1076268,1076272,1076276,1076280,1076284,1076288,1076292,1076296,1076300,1076304,1076308,1076312,1076348,1076352,1076356,1076360,1076364,1076368,1078516,1078520,1078524,1078528,1078532,1078536,1078540,1078544,1078548,1078552,1078556,1078560,1078564,1078568,1078572,1078576,1078580,1078584,1078612,1078616,1078620,1078624,1078628,1078632,1078636,1080776,1080780,1080784,1080788,1080792,1080796,1080800,1080804,1080808,1080812,1080816,1080820,1080824,1080828,1080832,1080836,1080840,1080844,1080848,1080852,1080856,1080876,1080880,1080884,1080888,1080892,1080896,1080900,1080904,1083044,1083048,1083052,1083056,1083060,1083064,1083068,1083072,1083076,1083080,1083084,1083088,1083092,1083096,1083100,1083104,1083108,1083112,1083116,1083120,1083124,1083140,1083144,1083148,1083152,1083156,1083160,1083164,1083168,1083172,1085312,1085316,1085320,1085324,1085328,1085332,1085336,1085340,1085344,1085348,1085352,1085356,1085360,1085364,1085368,1085372,1085376,1085380,1085384,1085388,1085392,1085396,1085400,1085404,1085408,1085412,1085416,1085420,1085424,1085428,1085432,1085436,1085440,1087572,1087576,1087580,1087584,1087588,1087592,1087596,1087600,1087604,1087608,1087612,1087616,1087620,1087624,1087628,1087632,1087636,1087640,1087644,1087648,1087652,1087656,1087660,1087664,1087668,1087672,1087676,1087680,1087684,1087688,1087692,1087696,1087700,1087704,1087708,1089836,1089840,1089844,1089848,1089852,1089856,1089860,1089864,1089868,1089872,1089876,1089880,1089884,1089888,1089892,1089896,1089900,1089904,1089908,1089912,1089916,1089920,1089924,1089928,1089932,1089936,1089940,1089944,1089948,1089952,1089956,1089960,1089964,1089968,1089972,1089976,1092104,1092108,1092112,1092116,1092120,1092124,1092128,1092132,1092136,1092140,1092144,1092148,1092152,1092156,1092160,1092164,1092168,1092172,1092176,1092180,1092184,1092188,1092192,1092196,1092200,1092204,1092208,1092212,1092216,1092220,1092224,1092228,1092232,1092236,1092240,1092244,1094368,1094372,1094376,1094380,1094384,1094388,1094392,1094396,1094400,1094404,1094408,1094412,1094416,1094420,1094424,1094428,1094432,1094436,1094440,1094444,1094448,1094452,1094456,1094460,1094464,1094468,1094472,1094476,1094480,1094484,1094488,1094492,1094496,1094500,1094504,1094508,1094512,1096636,1096640,1096644,1096648,1096652,1096656,1096660,1096664,1096668,1096672,1096676,1096680,1096684,1096688,1096692,1096696,1096700,1096704,1096708,1096712,1096716,1096720,1096724,1096728,1096732,1096736,1096740,1096744,1096748,1096752,1096756,1096760,1096764,1096768,1096772,1096776,1096780,1098908,1098912,1098916,1098920,1098924,1098928,1098932,1098936,1098940,1098944,1098948,1098952,1098956,1098960,1098964,1098968,1098972,1098976,1098980,1098984,1098988,1098992,1098996,1099000,1099004,1099008,1099012,1099016,1099020,1099024,1099028,1099032,1099036,1099040,1099044,1099048,1101180,1101184,1101188,1101192,1101196,1101200,1101204,1101208,1101212,1101216,1101220,1101224,1101228,1101232,1101236,1101240,1101244,1101248,1101252,1101256,1101260,1101264,1101268,1101272,1101276,1101280,1101284,1101288,1101292,1101296,1101300,1101304,1101308,1101312,1101316,1103452,1103456,1103460,1103464,1103468,1103472,1103476,1103480,1103484,1103488,1103492,1103496,1103500,1103504,1103508,1103512,1103516,1103520,1103524,1103528,1103532,1103536,1103540,1103544,1103548,1103552,1103556,1103560,1103564,1103568,1103572,1103576,1103580,1105724,1105728,1105732,1105736,1105740,1105744,1105748,1105752,1105756,1105760,1105764,1105768,1105772,1105776,1105780,1105784,1105788,1105792,1105796,1105800,1105804,1105808,1105812,1105816,1105820,1105824,1105828,1105832,1105836,1105840,1105844,1105848,1107992,1107996,1108000,1108004,1108008,1108012,1108016,1108020,1108024,1108028,1108032,1108036,1108040,1108044,1108048,1108052,1108056,1108060,1108064,1108068,1108072,1108076,1108080,1108084,1108088,1108092,1108096,1108100,1108104,1108108,1108112,1108116,1110264,1110268,1110272,1110276,1110280,1110284,1110288,1110292,1110296,1110300,1110304,1110308,1110312,1110316,1110320,1110324,1110328,1110332,1110336,1110340,1110344,1110348,1110352,1110356,1110360,1110364,1110368,1110372,1110376,1110380,1110384,1112536,1112540,1112544,1112548,1112552,1112556,1112560,1112564,1112568,1112572,1112576,1112580,1112584,1112588,1112592,1112596,1112600,1112604,1112608,1112612,1112616,1112620,1112624,1112628,1112632,1112636,1112640,1112644,1112648,1112652,1114808,1114812,1114816,1114820,1114824,1114828,1114832,1114836,1114840,1114844,1114848,1114852,1114856,1114860,1114864,1114868,1114872,1114876,1114880,1114884,1114888,1114892,1114896,1114900,1114904,1114908,1114912,1114916,1117080,1117084,1117088,1117092,1117096,1117100,1117104,1117108,1117112,1117116,1117120,1117124,1117128,1117132,1117136,1117140,1117144,1117148,1117152,1117156,1117160,1117164,1117168,1117172,1117176,1117180,1117184,1119352,1119356,1119360,1119364,1119368,1119372,1119376,1119380,1119384,1119388,1119392,1119396,1119400,1119404,1119408,1119412,1119416,1119420,1119424,1119428,1119432,1119436,1119440,1119444,1119448,1121624,1121628,1121632,1121636,1121640,1121644,1121648,1121652,1121656,1121660,1121664,1121668,1121672,1121676,1121680,1121684,1121688,1121692,1121696,1121700,1121704,1121708,1121712,1121716,1123896,1123900,1123904,1123908,1123912,1123916,1123920,1123924,1123928,1123932,1123936,1123940,1123944,1123948,1123952,1123956,1123960,1123964,1123968,1123972,1123976,1123980,1123984,1126168,1126172,1126176,1126180,1126184,1126188,1126192,1126196,1126200,1126204,1126208,1126212,1126216,1126220,1126224,1126228,1126232,1126236,1126240,1126244,1126248,1128440,1128444,1128448,1128452,1128456,1128460,1128464,1128468,1128472,1128476,1128480,1128484,1128488,1128492,1128496,1128500,1128504,1128508,1128512,1130712,1130716,1130720,1130724,1130728,1130732,1130736,1130740,1130744,1130748,1130752,1130756,1130760,1130764,1130768,1130772,1130776,1130780,1132984,1132988,1132992,1132996,1133000,1133004,1133008,1133012,1133016,1133020,1133024,1133028,1133032,1133036,1133040,1133044,1133048,1135256,1135260,1135264,1135268,1135272,1135276,1135280,1135284,1135288,1135292,1135296,1135300,1135304,1135308,1135312,1137528,1137532,1137536,1137540,1137544,1137548,1137552,1137556,1137560,1137564,1137568,1137572,1137576,1139796,1139800,1139804,1139808,1139812,1139816,1139820,1139824,1139828,1139832,1139836,1139840,1142072,1142076,1142080,1142084,1142088,1142092,1142096,1142100,1142104,1144340,1144344,1144348,1144352,1144356,1144360,1144364,1144368,1146608,1146612,1146616,1146620,1146624,1146628,1146632],"ActualTermNumber":0}]}, | |
3 | +{"layerNumber":224,"bodyRegionId":3,"terms":[{"TermNumber":203524,"SystemNumbers":[2],"PixelLocations":[868780,868784,868788,868792,868796,868800,868804,868808,868812,868816,868820,868824,868828,868832,868836,868840,868844,868848,868852,868856,868860,868864,868868,868872,868876,871612,871616,871620,871624,871628,871632,871636,871640,871644,871648,871652,871656,871660,871664,871668,871672,871676,871680,871684,871688,871692,871696,871700,871704,871708,871712,871716,871720,871724,871728,871732,874448,874452,874456,874460,874464,874468,874472,874476,874480,874484,874488,874492,874496,874500,874504,874508,874512,874516,874520,874524,874528,874532,874536,874540,874544,874548,874552,874556,874560,874564,874568,874572,874576,874580,874584,874588,877280,877284,877288,877292,877296,877300,877304,877308,877312,877316,877320,877324,877328,877332,877336,877340,877344,877348,877352,877356,877360,877364,877368,877372,877376,877380,877384,877388,877392,877396,877400,877404,877408,877412,877416,877420,877424,877428,877432,877436,877440,877444,880120,880124,880128,880132,880136,880140,880144,880148,880152,880156,880160,880164,880168,880172,880176,880180,880184,880188,880192,880196,880200,880204,880208,880212,880216,880220,880224,880228,880232,880236,880240,880244,880248,880252,880256,880260,880264,880268,880272,880276,880280,880284,880288,880292,880296,880300,882956,882960,882964,882968,882972,882976,882980,882984,882988,882992,882996,883000,883004,883008,883012,883016,883020,883024,883028,883032,883036,883040,883044,883048,883052,883056,883060,883064,883068,883072,883076,883080,883084,883088,883092,883096,883100,883104,883108,883112,883116,883120,883124,883128,883132,883136,883140,883144,883148,885792,885796,885800,885804,885808,885812,885816,885820,885824,885828,885832,885836,885840,885844,885848,885852,885856,885860,885864,885868,885872,885876,885880,885884,885888,885892,885896,885900,885904,885908,885912,885916,885920,885924,885928,885932,885936,885940,885944,885948,885952,885956,885960,885964,885968,885972,885976,885980,885984,885988,885992,885996,886000,886004,888632,888636,888640,888644,888648,888652,888656,888660,888664,888668,888672,888676,888680,888684,888688,888692,888696,888700,888704,888708,888712,888716,888720,888724,888728,888732,888736,888740,888744,888748,888752,888756,888760,888764,888768,888772,888776,888780,888784,888788,888792,888796,888800,888804,888808,888812,888816,888820,888824,888828,888832,888836,888840,888844,888848,888852,891476,891480,891484,891488,891492,891496,891500,891504,891508,891512,891516,891520,891524,891528,891532,891536,891540,891544,891548,891552,891556,891560,891564,891568,891572,891576,891580,891584,891588,891592,891596,891600,891604,891608,891612,891616,891620,891624,891628,891632,891636,891640,891644,891648,891652,891656,891660,891664,891668,891672,891676,891680,891684,891688,891692,891696,891700,894316,894320,894324,894328,894332,894336,894340,894344,894348,894352,894356,894360,894364,894368,894372,894376,894380,894384,894388,894392,894396,894400,894404,894408,894412,894416,894420,894424,894428,894432,894436,894440,894444,894448,894452,894456,894460,894464,894468,894472,894476,894480,894484,894488,894492,894496,894500,894504,894508,894512,894516,894520,894524,894528,894532,894536,894540,894544,894548,897156,897160,897164,897168,897172,897176,897180,897184,897188,897192,897196,897200,897204,897208,897212,897216,897220,897224,897228,897232,897236,897240,897244,897248,897252,897256,897260,897264,897268,897272,897276,897280,897284,897288,897292,897296,897300,897304,897308,897312,897316,897320,897324,897328,897332,897336,897340,897344,897348,897352,897356,897360,897364,897368,897372,897376,897380,897384,897388,897392,899996,900000,900004,900008,900012,900016,900020,900024,900028,900032,900036,900040,900044,900048,900052,900056,900060,900064,900068,900072,900076,900080,900084,900088,900092,900096,900100,900104,900108,900112,900116,900120,900124,900128,900132,900136,900140,900144,900148,900152,900156,900160,900164,900168,900172,900176,900180,900184,900188,900192,900196,900200,900204,900208,900212,900216,900220,900224,900228,900232,900236,900240,902840,902844,902848,902852,902856,902860,902864,902868,902872,902876,902880,902884,902888,902892,902896,902900,902904,902908,902912,902916,902920,902924,902928,902932,902936,902940,902944,902948,902952,902956,902960,902964,902968,902972,902976,902980,902984,902988,902992,902996,903000,903004,903008,903012,903016,903020,903024,903028,903032,903036,903040,903044,903048,903052,903056,903060,903064,903068,903072,903076,903080,903084,905684,905688,905692,905696,905700,905704,905708,905712,905716,905720,905724,905728,905732,905736,905740,905744,905748,905752,905756,905760,905764,905768,905772,905776,905780,905784,905788,905792,905796,905800,905804,905808,905812,905816,905820,905824,905828,905832,905836,905840,905844,905848,905852,905856,905860,905864,905868,905872,905876,905880,905884,905888,905892,905896,905900,905904,905908,905912,905916,905920,905924,905928,908528,908532,908536,908540,908544,908548,908552,908556,908560,908564,908568,908572,908576,908580,908584,908588,908592,908596,908600,908604,908608,908612,908616,908620,908624,908628,908632,908636,908640,908644,908648,908652,908656,908660,908664,908668,908672,908676,908680,908684,908688,908692,908696,908700,908704,908708,908712,908716,908720,908724,908728,908732,908736,908740,908744,908748,908752,908756,908760,908764,908768,908772,911372,911376,911380,911384,911388,911392,911396,911400,911404,911408,911412,911416,911420,911424,911428,911432,911436,911440,911444,911448,911452,911456,911460,911464,911468,911472,911476,911480,911484,911488,911492,911496,911500,911504,911508,911512,911516,911520,911524,911528,911532,911536,911540,911544,911548,911552,911556,911560,911564,911568,911572,911576,911580,911584,911588,911592,911596,911600,911604,911608,911612,911616,914216,914220,914224,914228,914232,914236,914240,914244,914248,914252,914256,914260,914264,914268,914272,914276,914280,914284,914288,914292,914296,914300,914304,914308,914312,914316,914320,914324,914328,914332,914336,914340,914344,914348,914352,914356,914360,914364,914368,914372,914376,914380,914384,914388,914392,914396,914400,914404,914408,914412,914416,914420,914424,914428,914432,914436,914440,914444,914448,914452,914456,914460,917060,917064,917068,917072,917076,917080,917084,917088,917092,917096,917100,917104,917108,917112,917116,917120,917124,917128,917132,917136,917140,917144,917148,917152,917156,917160,917164,917168,917172,917176,917180,917184,917188,917192,917196,917200,917204,917208,917212,917216,917220,917224,917228,917232,917236,917240,917244,917248,917252,917256,917260,917264,917268,917272,917276,917280,917284,917288,917292,917296,917300,917304,919904,919908,919912,919916,919920,919924,919928,919932,919936,919940,919944,919948,919952,919956,919960,919964,919968,919972,919976,919980,919984,919988,919992,919996,920000,920004,920008,920012,920016,920020,920024,920028,920032,920036,920040,920044,920048,920052,920056,920060,920064,920068,920072,920076,920080,920084,920088,920092,920096,920100,920104,920108,920112,920116,920120,920124,920128,920132,920136,920140,920144,920148,922748,922752,922756,922760,922764,922768,922772,922776,922780,922784,922788,922792,922796,922800,922804,922808,922812,922816,922820,922824,922828,922832,922836,922840,922844,922848,922852,922856,922860,922864,922868,922872,922876,922880,922884,922888,922892,922896,922900,922904,922908,922912,922916,922920,922924,922928,922932,922936,922940,922944,922948,922952,922956,922960,922964,922968,922972,922976,922980,922984,922988,922992,925592,925596,925600,925604,925608,925612,925616,925620,925624,925628,925632,925636,925640,925644,925648,925652,925656,925660,925664,925668,925672,925676,925680,925684,925688,925692,925696,925700,925704,925708,925712,925716,925720,925724,925728,925732,925736,925740,925744,925748,925752,925756,925760,925764,925768,925772,925776,925780,925784,925788,925792,925796,925800,925804,925808,925812,925816,925820,925824,925828,925832,925836,928436,928440,928444,928448,928452,928456,928460,928464,928468,928472,928476,928480,928484,928488,928492,928496,928500,928504,928508,928512,928516,928520,928524,928528,928532,928536,928540,928544,928548,928552,928556,928560,928564,928568,928572,928576,928580,928584,928588,928592,928596,928600,928604,928608,928612,928616,928620,928624,928628,928632,928636,928640,928644,928648,928652,928656,928660,928664,928668,928672,928676,928680,931280,931284,931288,931292,931296,931300,931304,931308,931312,931316,931320,931324,931328,931332,931336,931340,931344,931348,931352,931356,931360,931364,931368,931372,931376,931380,931384,931388,931392,931396,931400,931404,931408,931412,931416,931420,931424,931428,931432,931436,931440,931444,931448,931452,931456,931460,931464,931468,931472,931476,931480,931484,931488,931492,931496,931500,931504,931508,931512,931516,931520,931524,934120,934124,934128,934132,934136,934140,934144,934148,934152,934156,934160,934164,934168,934172,934176,934180,934184,934188,934192,934196,934200,934204,934208,934212,934216,934220,934224,934228,934232,934236,934240,934244,934248,934252,934256,934260,934264,934268,934272,934276,934280,934284,934288,934292,934296,934300,934304,934308,934312,934316,934320,934324,934328,934332,934336,934340,934344,934348,934352,934356,934360,934364,934368,936964,936968,936972,936976,936980,936984,936988,936992,936996,937000,937004,937008,937012,937016,937020,937024,937028,937032,937036,937040,937044,937048,937052,937056,937060,937064,937068,937072,937076,937080,937084,937088,937092,937096,937100,937104,937108,937112,937116,937120,937124,937128,937132,937136,937140,937144,937148,937152,937156,937160,937164,937168,937172,937176,937180,937184,937188,937192,937196,937200,937204,937208,937212,939808,939812,939816,939820,939824,939828,939832,939836,939840,939844,939848,939852,939856,939860,939864,939868,939872,939876,939880,939884,939888,939892,939896,939900,939904,939908,939912,939916,939920,939924,939928,939932,939936,939940,939944,939948,939952,939956,939960,939964,939968,939972,939976,939980,939984,939988,939992,939996,940000,940004,940008,940012,940016,940020,940024,940028,940032,940036,940040,940044,940048,940052,940056,942652,942656,942660,942664,942668,942672,942676,942680,942684,942688,942692,942696,942700,942704,942708,942712,942716,942720,942724,942728,942732,942736,942740,942744,942748,942752,942756,942760,942764,942768,942772,942776,942780,942784,942788,942792,942796,942800,942804,942808,942812,942816,942820,942824,942828,942832,942836,942840,942844,942848,942852,942856,942860,942864,942868,942872,942876,942880,942884,942888,942892,942896,942900,945492,945496,945500,945504,945508,945512,945516,945520,945524,945528,945532,945536,945540,945544,945548,945552,945556,945560,945564,945568,945572,945576,945580,945584,945588,945592,945596,945600,945604,945608,945612,945616,945620,945624,945628,945632,945636,945640,945644,945648,945652,945656,945660,945664,945668,945672,945676,945680,945684,945688,945692,945696,945700,945704,945708,945712,945716,945720,945724,945728,945732,945736,945740,945744,948336,948340,948344,948348,948352,948356,948360,948364,948368,948372,948376,948380,948384,948388,948392,948396,948400,948404,948408,948412,948416,948420,948424,948428,948432,948436,948440,948444,948448,948452,948456,948460,948464,948468,948472,948476,948480,948484,948488,948492,948496,948500,948504,948508,948512,948516,948520,948524,948528,948532,948536,948540,948544,948548,948552,948556,948560,948564,948568,948572,948576,948580,948584,948588,951180,951184,951188,951192,951196,951200,951204,951208,951212,951216,951220,951224,951228,951232,951236,951240,951244,951248,951252,951256,951260,951264,951268,951272,951276,951280,951284,951288,951292,951296,951300,951304,951308,951312,951316,951320,951324,951328,951332,951336,951340,951344,951348,951352,951356,951360,951364,951368,951372,951376,951380,951384,951388,951392,951396,951400,951404,951408,951412,951416,951420,951424,951428,951432,954024,954028,954032,954036,954040,954044,954048,954052,954056,954060,954064,954068,954072,954076,954080,954084,954088,954092,954096,954100,954104,954108,954112,954116,954120,954124,954128,954132,954136,954140,954144,954148,954152,954156,954160,954164,954168,954172,954176,954180,954184,954188,954192,954196,954200,954204,954208,954212,954216,954220,954224,954228,954232,954236,954240,954244,954248,954252,954256,954260,954264,954268,954272,954276,956868,956872,956876,956880,956884,956888,956892,956896,956900,956904,956908,956912,956916,956920,956924,956928,956932,956936,956940,956944,956948,956952,956956,956960,956964,956968,956972,956976,956980,956984,956988,956992,956996,957000,957004,957008,957012,957016,957020,957024,957028,957032,957036,957040,957044,957048,957052,957056,957060,957064,957068,957072,957076,957080,957084,957088,957092,957096,957100,957104,957108,957112,957116,957120,959712,959716,959720,959724,959728,959732,959736,959740,959744,959748,959752,959756,959760,959764,959768,959772,959776,959780,959784,959788,959792,959796,959800,959804,959808,959812,959816,959820,959824,959828,959832,959836,959840,959844,959848,959852,959856,959860,959864,959868,959872,959876,959880,959884,959888,959892,959896,959900,959904,959908,959912,959916,959920,959924,959928,959932,959936,959940,959944,959948,959952,959956,959960,959964,962552,962556,962560,962564,962568,962572,962576,962580,962584,962588,962592,962596,962600,962604,962608,962612,962616,962620,962624,962628,962632,962636,962640,962644,962648,962652,962656,962660,962664,962668,962672,962676,962680,962684,962688,962692,962696,962700,962704,962708,962712,962716,962720,962724,962728,962732,962736,962740,962744,962748,962752,962756,962760,962764,962768,962772,962776,962780,962784,962788,962792,962796,962800,962804,962808,965396,965400,965404,965408,965412,965416,965420,965424,965428,965432,965436,965440,965444,965448,965452,965456,965460,965464,965468,965472,965476,965480,965484,965488,965492,965496,965500,965504,965508,965512,965516,965520,965524,965528,965532,965536,965540,965544,965548,965552,965556,965560,965564,965568,965572,965576,965580,965584,965588,965592,965596,965600,965604,965608,965612,965616,965620,965624,965628,965632,965636,965640,965644,965648,965652,968240,968244,968248,968252,968256,968260,968264,968268,968272,968276,968280,968284,968288,968292,968296,968300,968304,968308,968312,968316,968320,968324,968328,968332,968336,968340,968344,968348,968352,968356,968360,968364,968368,968372,968376,968380,968384,968388,968392,968396,968400,968404,968408,968412,968416,968420,968424,968428,968432,968436,968440,968444,968448,968452,968456,968460,968464,968468,968472,968476,968480,968484,968488,968492,968496,971084,971088,971092,971096,971100,971104,971108,971112,971116,971120,971124,971128,971132,971136,971140,971144,971148,971152,971156,971160,971164,971168,971172,971176,971180,971184,971188,971192,971196,971200,971204,971208,971212,971216,971220,971224,971228,971232,971236,971240,971244,971248,971252,971256,971260,971264,971268,971272,971276,971280,971284,971288,971292,971296,971300,971304,971308,971312,971316,971320,971324,971328,971332,971336,971340,973928,973932,973936,973940,973944,973948,973952,973956,973960,973964,973968,973972,973976,973980,973984,973988,973992,973996,974000,974004,974008,974012,974016,974020,974024,974028,974032,974036,974040,974044,974048,974052,974056,974060,974064,974068,974072,974076,974080,974084,974088,974092,974096,974100,974104,974108,974112,974116,974120,974124,974128,974132,974136,974140,974144,974148,974152,974156,974160,974164,974168,974172,974176,974180,974184,976772,976776,976780,976784,976788,976792,976796,976800,976804,976808,976812,976816,976820,976824,976828,976832,976836,976840,976844,976848,976852,976856,976860,976864,976868,976872,976876,976880,976884,976888,976892,976896,976900,976904,976908,976912,976916,976920,976924,976928,976932,976936,976940,976944,976948,976952,976956,976960,976964,976968,976972,976976,976980,976984,976988,976992,976996,977000,977004,977008,977012,977016,977020,977024,977028,979616,979620,979624,979628,979632,979636,979640,979644,979648,979652,979656,979660,979664,979668,979672,979676,979680,979684,979688,979692,979696,979700,979704,979708,979712,979716,979720,979724,979728,979732,979736,979740,979744,979748,979752,979756,979760,979764,979768,979772,979776,979780,979784,979788,979792,979796,979800,979804,979808,979812,979816,979820,979824,979828,979832,979836,979840,979844,979848,979852,979856,979860,979864,979868,979872,982460,982464,982468,982472,982476,982480,982484,982488,982492,982496,982500,982504,982508,982512,982516,982520,982524,982528,982532,982536,982540,982544,982548,982552,982556,982560,982564,982568,982572,982576,982580,982584,982588,982592,982596,982600,982604,982608,982612,982616,982620,982624,982628,982632,982636,982640,982644,982648,982652,982656,982660,982664,982668,982672,982676,982680,982684,982688,982692,982696,982700,982704,982708,982712,982716,985304,985308,985312,985316,985320,985324,985328,985332,985336,985340,985344,985348,985352,985356,985360,985364,985368,985372,985376,985380,985384,985388,985392,985396,985400,985404,985408,985412,985416,985420,985424,985428,985432,985436,985440,985444,985448,985452,985456,985460,985464,985468,985472,985476,985480,985484,985488,985492,985496,985500,985504,985508,985512,985516,985520,985524,985528,985532,985536,985540,985544,985548,985552,985556,985560,988148,988152,988156,988160,988164,988168,988172,988176,988180,988184,988188,988192,988196,988200,988204,988208,988212,988216,988220,988224,988228,988232,988236,988240,988244,988248,988252,988256,988260,988264,988268,988272,988276,988280,988284,988288,988292,988296,988300,988304,988308,988312,988316,988320,988324,988328,988332,988336,988340,988344,988348,988352,988356,988360,988364,988368,988372,988376,988380,988384,988388,988392,988396,988400,988404,990992,990996,991000,991004,991008,991012,991016,991020,991024,991028,991032,991036,991040,991044,991048,991052,991056,991060,991064,991068,991072,991076,991080,991084,991088,991092,991096,991100,991104,991108,991112,991116,991120,991124,991128,991132,991136,991140,991144,991148,991152,991156,991160,991164,991168,991172,991176,991180,991184,991188,991192,991196,991200,991204,991208,991212,991216,991220,991224,991228,991232,991236,991240,991244,991248,993840,993844,993848,993852,993856,993860,993864,993868,993872,993876,993880,993884,993888,993892,993896,993900,993904,993908,993912,993916,993920,993924,993928,993932,993936,993940,993944,993948,993952,993956,993960,993964,993968,993972,993976,993980,993984,993988,993992,993996,994000,994004,994008,994012,994016,994020,994024,994028,994032,994036,994040,994044,994048,994052,994056,994060,994064,994068,994072,994076,994080,994084,994088,994092,996684,996688,996692,996696,996700,996704,996708,996712,996716,996720,996724,996728,996732,996736,996740,996744,996748,996752,996756,996760,996764,996768,996772,996776,996780,996784,996788,996792,996796,996800,996804,996808,996812,996816,996820,996824,996828,996832,996836,996840,996844,996848,996852,996856,996860,996864,996868,996872,996876,996880,996884,996888,996892,996896,996900,996904,996908,996912,996916,996920,996924,996928,996932,996936,999528,999532,999536,999540,999544,999548,999552,999556,999560,999564,999568,999572,999576,999580,999584,999588,999592,999596,999600,999604,999608,999612,999616,999620,999624,999628,999632,999636,999640,999644,999648,999652,999656,999660,999664,999668,999672,999676,999680,999684,999688,999692,999696,999700,999704,999708,999712,999716,999720,999724,999728,999732,999736,999740,999744,999748,999752,999756,999760,999764,999768,999772,999776,999780,1002372,1002376,1002380,1002384,1002388,1002392,1002396,1002400,1002404,1002408,1002412,1002416,1002420,1002424,1002428,1002432,1002436,1002440,1002444,1002448,1002452,1002456,1002460,1002464,1002468,1002472,1002476,1002480,1002484,1002488,1002492,1002496,1002500,1002504,1002508,1002512,1002516,1002520,1002524,1002528,1002532,1002536,1002540,1002544,1002548,1002552,1002556,1002560,1002564,1002568,1002572,1002576,1002580,1002584,1002588,1002592,1002596,1002600,1002604,1002608,1002612,1002616,1002620,1002624,1005216,1005220,1005224,1005228,1005232,1005236,1005240,1005244,1005248,1005252,1005256,1005260,1005264,1005268,1005272,1005276,1005280,1005284,1005288,1005292,1005296,1005300,1005304,1005308,1005312,1005316,1005320,1005324,1005328,1005332,1005336,1005340,1005344,1005348,1005352,1005356,1005360,1005364,1005368,1005372,1005376,1005380,1005384,1005388,1005392,1005396,1005400,1005404,1005408,1005412,1005416,1005420,1005424,1005428,1005432,1005436,1005440,1005444,1005448,1005452,1005456,1005460,1005464,1005468,1008064,1008068,1008072,1008076,1008080,1008084,1008088,1008092,1008096,1008100,1008104,1008108,1008112,1008116,1008120,1008124,1008128,1008132,1008136,1008140,1008144,1008148,1008152,1008156,1008160,1008164,1008168,1008172,1008176,1008180,1008184,1008188,1008192,1008196,1008200,1008204,1008208,1008212,1008216,1008220,1008224,1008228,1008232,1008236,1008240,1008244,1008248,1008252,1008256,1008260,1008264,1008268,1008272,1008276,1008280,1008284,1008288,1008292,1008296,1008300,1008304,1008308,1008312,1010908,1010912,1010916,1010920,1010924,1010928,1010932,1010936,1010940,1010944,1010948,1010952,1010956,1010960,1010964,1010968,1010972,1010976,1010980,1010984,1010988,1010992,1010996,1011000,1011004,1011008,1011012,1011016,1011020,1011024,1011028,1011032,1011036,1011040,1011044,1011048,1011052,1011056,1011060,1011064,1011068,1011072,1011076,1011080,1011084,1011088,1011092,1011096,1011100,1011104,1011108,1011112,1011116,1011120,1011124,1011128,1011132,1011136,1011140,1011144,1011148,1011152,1011156,1013756,1013760,1013764,1013768,1013772,1013776,1013780,1013784,1013788,1013792,1013796,1013800,1013804,1013808,1013812,1013816,1013820,1013824,1013828,1013832,1013836,1013840,1013844,1013848,1013852,1013856,1013860,1013864,1013868,1013872,1013876,1013880,1013884,1013888,1013892,1013896,1013900,1013904,1013908,1013912,1013916,1013920,1013924,1013928,1013932,1013936,1013940,1013944,1013948,1013952,1013956,1013960,1013964,1013968,1013972,1013976,1013980,1013984,1013988,1013992,1013996,1014000,1016600,1016604,1016608,1016612,1016616,1016620,1016624,1016628,1016632,1016636,1016640,1016644,1016648,1016652,1016656,1016660,1016664,1016668,1016672,1016676,1016680,1016684,1016688,1016692,1016696,1016700,1016704,1016708,1016712,1016716,1016720,1016724,1016728,1016732,1016736,1016740,1016744,1016748,1016752,1016756,1016760,1016764,1016768,1016772,1016776,1016780,1016784,1016788,1016792,1016796,1016800,1016804,1016808,1016812,1016816,1016820,1016824,1016828,1016832,1016836,1016840,1016844,1019444,1019448,1019452,1019456,1019460,1019464,1019468,1019472,1019476,1019480,1019484,1019488,1019492,1019496,1019500,1019504,1019508,1019512,1019516,1019520,1019524,1019528,1019532,1019536,1019540,1019544,1019548,1019552,1019556,1019560,1019564,1019568,1019572,1019576,1019580,1019584,1019588,1019592,1019596,1019600,1019604,1019608,1019612,1019616,1019620,1019624,1019628,1019632,1019636,1019640,1019644,1019648,1019652,1019656,1019660,1019664,1019668,1019672,1019676,1019680,1019684,1019688,1022288,1022292,1022296,1022300,1022304,1022308,1022312,1022316,1022320,1022324,1022328,1022332,1022336,1022340,1022344,1022348,1022352,1022356,1022360,1022364,1022368,1022372,1022376,1022380,1022384,1022388,1022392,1022396,1022400,1022404,1022408,1022412,1022416,1022420,1022424,1022428,1022432,1022436,1022440,1022444,1022448,1022452,1022456,1022460,1022464,1022468,1022472,1022476,1022480,1022484,1022488,1022492,1022496,1022500,1022504,1022508,1022512,1022516,1022520,1022524,1022528,1022532,1025132,1025136,1025140,1025144,1025148,1025152,1025156,1025160,1025164,1025168,1025172,1025176,1025180,1025184,1025188,1025192,1025196,1025200,1025204,1025208,1025212,1025216,1025220,1025224,1025228,1025232,1025236,1025240,1025244,1025248,1025252,1025256,1025260,1025264,1025268,1025272,1025276,1025280,1025284,1025288,1025292,1025296,1025300,1025304,1025308,1025312,1025316,1025320,1025324,1025328,1025332,1025336,1025340,1025344,1025348,1025352,1025356,1025360,1025364,1025368,1025372,1025376,1027976,1027980,1027984,1027988,1027992,1027996,1028000,1028004,1028008,1028012,1028016,1028020,1028024,1028028,1028032,1028036,1028040,1028044,1028048,1028052,1028056,1028060,1028064,1028068,1028072,1028076,1028080,1028084,1028088,1028092,1028096,1028100,1028104,1028108,1028112,1028116,1028120,1028124,1028128,1028132,1028136,1028140,1028144,1028148,1028152,1028156,1028160,1028164,1028168,1028172,1028176,1028180,1028184,1028188,1028192,1028196,1028200,1028204,1028208,1028212,1028216,1028220,1030824,1030828,1030832,1030836,1030840,1030844,1030848,1030852,1030856,1030860,1030864,1030868,1030872,1030876,1030880,1030884,1030888,1030892,1030896,1030900,1030904,1030908,1030912,1030916,1030920,1030924,1030928,1030932,1030936,1030940,1030944,1030948,1030952,1030956,1030960,1030964,1030968,1030972,1030976,1030980,1030984,1030988,1030992,1030996,1031000,1031004,1031008,1031012,1031016,1031020,1031024,1031028,1031032,1031036,1031040,1031044,1031048,1031052,1031056,1031060,1031064,1033668,1033672,1033676,1033680,1033684,1033688,1033692,1033696,1033700,1033704,1033708,1033712,1033716,1033720,1033724,1033728,1033732,1033736,1033740,1033744,1033748,1033752,1033756,1033760,1033764,1033768,1033772,1033776,1033780,1033784,1033788,1033792,1033796,1033800,1033804,1033808,1033812,1033816,1033820,1033824,1033828,1033832,1033836,1033840,1033844,1033848,1033852,1033856,1033860,1033864,1033868,1033872,1033876,1033880,1033884,1033888,1033892,1033896,1033900,1033904,1033908,1036512,1036516,1036520,1036524,1036528,1036532,1036536,1036540,1036544,1036548,1036552,1036556,1036560,1036564,1036568,1036572,1036576,1036580,1036584,1036588,1036592,1036596,1036600,1036604,1036608,1036612,1036616,1036620,1036624,1036628,1036632,1036636,1036640,1036644,1036648,1036652,1036656,1036660,1036664,1036668,1036672,1036676,1036680,1036684,1036688,1036692,1036696,1036700,1036704,1036708,1036712,1036716,1036720,1036724,1036728,1036732,1036736,1036740,1036744,1036748,1036752,1039360,1039364,1039368,1039372,1039376,1039380,1039384,1039388,1039392,1039396,1039400,1039404,1039408,1039412,1039416,1039420,1039424,1039428,1039432,1039436,1039440,1039444,1039448,1039452,1039456,1039460,1039464,1039468,1039472,1039476,1039480,1039484,1039488,1039492,1039496,1039500,1039504,1039508,1039512,1039516,1039520,1039524,1039528,1039532,1039536,1039540,1039544,1039548,1039552,1039556,1039560,1039564,1039568,1039572,1039576,1039580,1039584,1039588,1039592,1039596,1042204,1042208,1042212,1042216,1042220,1042224,1042228,1042232,1042236,1042240,1042244,1042248,1042252,1042256,1042260,1042264,1042268,1042272,1042276,1042280,1042284,1042288,1042292,1042296,1042300,1042304,1042308,1042312,1042316,1042320,1042324,1042328,1042332,1042336,1042340,1042344,1042348,1042352,1042356,1042360,1042364,1042368,1042372,1042376,1042380,1042384,1042388,1042392,1042396,1042400,1042404,1042408,1042412,1042416,1042420,1042424,1042428,1042432,1042436,1042440,1045048,1045052,1045056,1045060,1045064,1045068,1045072,1045076,1045080,1045084,1045088,1045092,1045096,1045100,1045104,1045108,1045112,1045116,1045120,1045124,1045128,1045132,1045136,1045140,1045144,1045148,1045152,1045156,1045160,1045164,1045168,1045172,1045176,1045180,1045184,1045188,1045192,1045196,1045200,1045204,1045208,1045212,1045216,1045220,1045224,1045228,1045232,1045236,1045240,1045244,1045248,1045252,1045256,1045260,1045264,1045268,1045272,1045276,1045280,1045284,1047892,1047896,1047900,1047904,1047908,1047912,1047916,1047920,1047924,1047928,1047932,1047936,1047940,1047944,1047948,1047952,1047956,1047960,1047964,1047968,1047972,1047976,1047980,1047984,1047988,1047992,1047996,1048000,1048004,1048008,1048012,1048016,1048020,1048024,1048028,1048032,1048036,1048040,1048044,1048048,1048052,1048056,1048060,1048064,1048068,1048072,1048076,1048080,1048084,1048088,1048092,1048096,1048100,1048104,1048108,1048112,1048116,1048120,1048124,1048128,1050736,1050740,1050744,1050748,1050752,1050756,1050760,1050764,1050768,1050772,1050776,1050780,1050784,1050788,1050792,1050796,1050800,1050804,1050808,1050812,1050816,1050820,1050824,1050828,1050832,1050836,1050840,1050844,1050848,1050852,1050856,1050860,1050864,1050868,1050872,1050876,1050880,1050884,1050888,1050892,1050896,1050900,1050904,1050908,1050912,1050916,1050920,1050924,1050928,1050932,1050936,1050940,1050944,1050948,1050952,1050956,1050960,1050964,1050968,1050972,1053580,1053584,1053588,1053592,1053596,1053600,1053604,1053608,1053612,1053616,1053620,1053624,1053628,1053632,1053636,1053640,1053644,1053648,1053652,1053656,1053660,1053664,1053668,1053672,1053676,1053680,1053684,1053688,1053692,1053696,1053700,1053704,1053708,1053712,1053716,1053720,1053724,1053728,1053732,1053736,1053740,1053744,1053748,1053752,1053756,1053760,1053764,1053768,1053772,1053776,1053780,1053784,1053788,1053792,1053796,1053800,1053804,1053808,1053812,1053816,1056420,1056424,1056428,1056432,1056436,1056440,1056444,1056448,1056452,1056456,1056460,1056464,1056468,1056472,1056476,1056480,1056484,1056488,1056492,1056496,1056500,1056504,1056508,1056512,1056516,1056520,1056524,1056528,1056532,1056536,1056540,1056544,1056548,1056552,1056556,1056560,1056564,1056568,1056572,1056576,1056580,1056584,1056588,1056592,1056596,1056600,1056604,1056608,1056612,1056616,1056620,1056624,1056628,1056632,1056636,1056640,1056644,1056648,1056652,1056656,1056660,1059264,1059268,1059272,1059276,1059280,1059284,1059288,1059292,1059296,1059300,1059304,1059308,1059312,1059316,1059320,1059324,1059328,1059332,1059336,1059340,1059344,1059348,1059352,1059356,1059360,1059364,1059368,1059372,1059376,1059380,1059384,1059388,1059392,1059396,1059400,1059404,1059408,1059412,1059416,1059420,1059424,1059428,1059432,1059436,1059440,1059444,1059448,1059452,1059456,1059460,1059464,1059468,1059472,1059476,1059480,1059484,1059488,1059492,1059496,1059500,1059504,1062108,1062112,1062116,1062120,1062124,1062128,1062132,1062136,1062140,1062144,1062148,1062152,1062156,1062160,1062164,1062168,1062172,1062176,1062180,1062184,1062188,1062192,1062196,1062200,1062204,1062208,1062212,1062216,1062220,1062224,1062228,1062232,1062236,1062240,1062244,1062248,1062252,1062256,1062260,1062264,1062268,1062272,1062276,1062280,1062284,1062288,1062292,1062296,1062300,1062304,1062308,1062312,1062316,1062320,1062324,1062328,1062332,1062336,1062340,1062344,1062348,1062352,1064948,1064952,1064956,1064960,1064964,1064968,1064972,1064976,1064980,1064984,1064988,1064992,1064996,1065000,1065004,1065008,1065012,1065016,1065020,1065024,1065028,1065032,1065036,1065040,1065044,1065048,1065052,1065056,1065060,1065064,1065068,1065072,1065076,1065080,1065084,1065088,1065092,1065096,1065100,1065104,1065108,1065112,1065116,1065120,1065124,1065128,1065132,1065136,1065140,1065144,1065148,1065152,1065156,1065160,1065164,1065168,1065172,1065176,1065180,1065184,1065188,1065192,1065196,1067792,1067796,1067800,1067804,1067808,1067812,1067816,1067820,1067824,1067828,1067832,1067836,1067840,1067844,1067848,1067852,1067856,1067860,1067864,1067868,1067872,1067876,1067880,1067884,1067888,1067892,1067896,1067900,1067904,1067908,1067912,1067916,1067920,1067924,1067928,1067932,1067936,1067940,1067944,1067948,1067952,1067956,1067960,1067964,1067968,1067972,1067976,1067980,1067984,1067988,1067992,1067996,1068000,1068004,1068008,1068012,1068016,1068020,1068024,1068028,1068032,1068036,1068040,1070636,1070640,1070644,1070648,1070652,1070656,1070660,1070664,1070668,1070672,1070676,1070680,1070684,1070688,1070692,1070696,1070700,1070704,1070708,1070712,1070716,1070720,1070724,1070728,1070732,1070736,1070740,1070744,1070748,1070752,1070756,1070760,1070764,1070768,1070772,1070776,1070780,1070784,1070788,1070792,1070796,1070800,1070804,1070808,1070812,1070816,1070820,1070824,1070828,1070832,1070836,1070840,1070844,1070848,1070852,1070856,1070860,1070864,1070868,1070872,1070876,1070880,1070884,1070888,1073480,1073484,1073488,1073492,1073496,1073500,1073504,1073508,1073512,1073516,1073520,1073524,1073528,1073532,1073536,1073540,1073544,1073548,1073552,1073556,1073560,1073564,1073568,1073572,1073576,1073580,1073584,1073588,1073592,1073596,1073600,1073604,1073608,1073612,1073616,1073620,1073624,1073628,1073632,1073636,1073640,1073644,1073648,1073652,1073656,1073660,1073664,1073668,1073672,1073676,1073680,1073684,1073688,1073692,1073696,1073700,1073704,1073708,1073712,1073716,1073720,1073724,1073728,1073732,1073736,1076324,1076328,1076332,1076336,1076340,1076344,1076348,1076352,1076356,1076360,1076364,1076368,1076372,1076376,1076380,1076384,1076388,1076392,1076396,1076400,1076404,1076408,1076412,1076416,1076420,1076424,1076428,1076432,1076436,1076440,1076444,1076448,1076452,1076456,1076460,1076464,1076468,1076472,1076476,1076480,1076484,1076488,1076492,1076496,1076500,1076504,1076508,1076512,1076516,1076520,1076524,1076528,1076532,1076536,1076540,1076544,1076548,1076552,1076556,1076560,1076564,1076568,1076572,1076576,1076580,1076584,1079164,1079168,1079172,1079176,1079180,1079184,1079188,1079192,1079196,1079200,1079204,1079208,1079212,1079216,1079220,1079224,1079228,1079232,1079236,1079240,1079244,1079248,1079252,1079256,1079260,1079264,1079268,1079272,1079276,1079280,1079284,1079288,1079292,1079296,1079300,1079304,1079308,1079312,1079316,1079320,1079324,1079328,1079332,1079336,1079340,1079344,1079348,1079352,1079356,1079360,1079364,1079368,1079372,1079376,1079380,1079384,1079388,1079392,1079396,1079400,1079404,1079408,1079412,1079416,1079420,1079424,1079428,1082008,1082012,1082016,1082020,1082024,1082028,1082032,1082036,1082040,1082044,1082048,1082052,1082056,1082060,1082064,1082068,1082072,1082076,1082080,1082084,1082088,1082092,1082096,1082100,1082104,1082108,1082112,1082116,1082120,1082124,1082128,1082132,1082136,1082140,1082144,1082148,1082152,1082156,1082160,1082164,1082168,1082172,1082176,1082180,1082184,1082188,1082192,1082196,1082200,1082204,1082208,1082212,1082216,1082220,1082224,1082228,1082232,1082236,1082240,1082244,1082248,1082252,1082256,1082260,1082264,1082268,1082272,1084852,1084856,1084860,1084864,1084868,1084872,1084876,1084880,1084884,1084888,1084892,1084896,1084900,1084904,1084908,1084912,1084916,1084920,1084924,1084928,1084932,1084936,1084940,1084944,1084948,1084952,1084956,1084960,1084964,1084968,1084972,1084976,1084980,1084984,1084988,1084992,1084996,1085000,1085004,1085008,1085012,1085016,1085020,1085024,1085028,1085032,1085036,1085040,1085044,1085048,1085052,1085056,1085060,1085064,1085068,1085072,1085076,1085080,1085084,1085088,1085092,1085096,1085100,1085104,1085108,1085112,1085116,1087696,1087700,1087704,1087708,1087712,1087716,1087720,1087724,1087728,1087732,1087736,1087740,1087744,1087748,1087752,1087756,1087760,1087764,1087768,1087772,1087776,1087780,1087784,1087788,1087792,1087796,1087800,1087804,1087808,1087812,1087816,1087820,1087824,1087828,1087832,1087836,1087840,1087844,1087848,1087852,1087856,1087860,1087864,1087868,1087872,1087876,1087880,1087884,1087888,1087892,1087896,1087900,1087904,1087908,1087912,1087916,1087920,1087924,1087928,1087932,1087936,1087940,1087944,1087948,1087952,1087956,1087960,1090540,1090544,1090548,1090552,1090556,1090560,1090564,1090568,1090572,1090576,1090580,1090584,1090588,1090592,1090596,1090600,1090604,1090608,1090612,1090616,1090620,1090624,1090628,1090632,1090636,1090640,1090644,1090648,1090652,1090656,1090660,1090664,1090668,1090672,1090676,1090680,1090684,1090688,1090692,1090696,1090700,1090704,1090708,1090712,1090716,1090720,1090724,1090728,1090732,1090736,1090740,1090744,1090748,1090752,1090756,1090760,1090764,1090768,1090772,1090776,1090780,1090784,1090788,1090792,1090796,1090800,1090804,1093464,1093468,1093472,1093476,1093480,1093484,1093488,1093492,1093496,1093500,1093504,1093508,1093512,1093516,1093520,1093524,1093528,1093532,1093536,1093540,1093544,1093548,1093552,1093556,1093560,1093648,1096352,1096356,1096360,1096364,1096368,1210076,1210080,1210084,1212932,1215776,1215780,1215784,1215844],"ActualTermNumber":0}]}] | |
0 | 4 | \ No newline at end of file | ... | ... |