Last active
February 26, 2024 17:45
-
-
Save jonmchan/5919468a189eaf036f134f963137ccb2 to your computer and use it in GitHub Desktop.
All Pantone Colors Codes to RGB Mapping Exploratory Findings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in order to find how many colors are available, I reverse-engineered Pantone's color finder: https://www.pantone.com/color-finder | |
curl 'https://4n6dg5ccsfct3lzfssu34boemq.appsync-api.us-east-1.amazonaws.com/graphql' -H 'Accept: application/json, text/plain, */*' -H 'Referer: https://www.pantone.com/color-finder' -H 'Origin: https://www.pantone.com' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36' -H 'x-api-key: da2-sa3lsp2tkzhj3c2ysxbdprl73e' -H 'Content-Type: application/json;charset=UTF-8' --data-binary '{"query":"\n {\n getColors {\n count\n totalCount\n maxResults\n colors {\n code\n name\n rgb {r g b}\n book {\n id\n title\n group\n sortIndex\n url\n info {\n en { target description }\n }\n }\n positionInBook\n }\n }\n }\n "}' --compressed | |
# after searching, as of 3/2019, the totalCount == total count - 21060 | |
# let's query all the books... they for some reason don't have a limit on the results returned for this api. | |
curl 'https://4n6dg5ccsfct3lzfssu34boemq.appsync-api.us-east-1.amazonaws.com/graphql' -H 'Accept: application/json, text/plain, */*' -H 'Referer: https://www.pantone.com/color-finder' -H 'Origin: https://www.pantone.com' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36' -H 'x-api-key: da2-sa3lsp2tkzhj3c2ysxbdprl73e' -H 'Content-Type: application/json;charset=UTF-8' --data-binary '{"query": "\n {\n getBooks {\n id\n colors {\n code\n name\n rgb {r g b}\n positionInBook\n }\n }\n }\n "}' --compressed | |
# all the pantone colors are returned in here and just need to be transformed so you can easily look up the code -> RGB color. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import json | |
# this script pulls the colors out of the books array into a single top level array. | |
colors = [] | |
with open('original.json') as json_file: | |
data = json.load(json_file) | |
for book in data['data']['getBooks']: | |
colors = colors + book['colors'] | |
with open('transformed.json', 'w') as outfile: | |
json.dump(colors,outfile, indent=2) |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"getBooks": [ | |
{ | |
"id": "pantoneSolidUncoatedV3M2", | |
"colors": [ | |
{ | |
"code": "Yellow 012 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 224, | |
"b": 0 | |
}, | |
"positionInBook": 0 | |
}, | |
{ | |
"code": "Bright Red U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 84, | |
"b": 66 | |
}, | |
"positionInBook": 1 | |
}, | |
{ | |
"code": "Pink U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 66, | |
"b": 141 | |
}, | |
"positionInBook": 2 | |
}, | |
{ | |
"code": "Medium Purple U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 66, | |
"b": 138 | |
}, | |
"positionInBook": 3 | |
}, | |
{ | |
"code": "Dark Blue U", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 71, | |
"b": 149 | |
}, | |
"positionInBook": 4 | |
}, | |
{ | |
"code": "3514 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 180, | |
"b": 61 | |
}, | |
"positionInBook": 5 | |
}, | |
{ | |
"code": "3596 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 180, | |
"b": 129 | |
}, | |
"positionInBook": 6 | |
}, | |
{ | |
"code": "3547 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 142, | |
"b": 82 | |
}, | |
"positionInBook": 7 | |
}, | |
{ | |
"code": "3588 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 151, | |
"b": 76 | |
}, | |
"positionInBook": 8 | |
}, | |
{ | |
"code": "3564 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 118, | |
"b": 45 | |
}, | |
"positionInBook": 9 | |
}, | |
{ | |
"code": "2428 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 143, | |
"b": 85 | |
}, | |
"positionInBook": 10 | |
}, | |
{ | |
"code": "2429 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 114, | |
"b": 81 | |
}, | |
"positionInBook": 11 | |
}, | |
{ | |
"code": "2430 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 163, | |
"b": 128 | |
}, | |
"positionInBook": 12 | |
}, | |
{ | |
"code": "2431 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 151, | |
"b": 103 | |
}, | |
"positionInBook": 13 | |
}, | |
{ | |
"code": "2432 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 144, | |
"b": 105 | |
}, | |
"positionInBook": 14 | |
}, | |
{ | |
"code": "2433 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 131, | |
"b": 102 | |
}, | |
"positionInBook": 15 | |
}, | |
{ | |
"code": "2434 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 128, | |
"b": 108 | |
}, | |
"positionInBook": 16 | |
}, | |
{ | |
"code": "2435 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 122, | |
"b": 106 | |
}, | |
"positionInBook": 17 | |
}, | |
{ | |
"code": "2436 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 105, | |
"b": 93 | |
}, | |
"positionInBook": 18 | |
}, | |
{ | |
"code": "2437 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 191, | |
"b": 157 | |
}, | |
"positionInBook": 19 | |
}, | |
{ | |
"code": "2438 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 162, | |
"b": 135 | |
}, | |
"positionInBook": 20 | |
}, | |
{ | |
"code": "2439 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 135, | |
"b": 120 | |
}, | |
"positionInBook": 21 | |
}, | |
{ | |
"code": "2440 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 147, | |
"b": 140 | |
}, | |
"positionInBook": 22 | |
}, | |
{ | |
"code": "2441 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 123, | |
"b": 112 | |
}, | |
"positionInBook": 23 | |
}, | |
{ | |
"code": "2442 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 113, | |
"b": 106 | |
}, | |
"positionInBook": 24 | |
}, | |
{ | |
"code": "2443 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 92, | |
"b": 79 | |
}, | |
"positionInBook": 25 | |
}, | |
{ | |
"code": "3544 U", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 182, | |
"b": 160 | |
}, | |
"positionInBook": 26 | |
}, | |
{ | |
"code": "2444 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 167, | |
"b": 157 | |
}, | |
"positionInBook": 27 | |
}, | |
{ | |
"code": "3519 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 163, | |
"b": 162 | |
}, | |
"positionInBook": 28 | |
}, | |
{ | |
"code": "3572 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 161, | |
"b": 152 | |
}, | |
"positionInBook": 29 | |
}, | |
{ | |
"code": "2445 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 137, | |
"b": 142 | |
}, | |
"positionInBook": 30 | |
}, | |
{ | |
"code": "2446 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 135, | |
"b": 140 | |
}, | |
"positionInBook": 31 | |
}, | |
{ | |
"code": "2447 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 122, | |
"b": 127 | |
}, | |
"positionInBook": 32 | |
}, | |
{ | |
"code": "2448 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 118, | |
"b": 107 | |
}, | |
"positionInBook": 33 | |
}, | |
{ | |
"code": "3556 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 81, | |
"b": 72 | |
}, | |
"positionInBook": 34 | |
}, | |
{ | |
"code": "3516 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 79, | |
"b": 57 | |
}, | |
"positionInBook": 35 | |
}, | |
{ | |
"code": "3546 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 67, | |
"b": 66 | |
}, | |
"positionInBook": 36 | |
}, | |
{ | |
"code": "3517 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 62, | |
"b": 68 | |
}, | |
"positionInBook": 37 | |
}, | |
{ | |
"code": "3523 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 86, | |
"b": 88 | |
}, | |
"positionInBook": 38 | |
}, | |
{ | |
"code": "2449 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 79, | |
"b": 77 | |
}, | |
"positionInBook": 39 | |
}, | |
{ | |
"code": "3568 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 195, | |
"b": 215 | |
}, | |
"positionInBook": 40 | |
}, | |
{ | |
"code": "3595 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 180, | |
"b": 207 | |
}, | |
"positionInBook": 41 | |
}, | |
{ | |
"code": "2450 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 97, | |
"b": 142 | |
}, | |
"positionInBook": 42 | |
}, | |
{ | |
"code": "3527 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 83, | |
"b": 148 | |
}, | |
"positionInBook": 43 | |
}, | |
{ | |
"code": "3582 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 115, | |
"b": 154 | |
}, | |
"positionInBook": 44 | |
}, | |
{ | |
"code": "2451 U", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 95, | |
"b": 124 | |
}, | |
"positionInBook": 45 | |
}, | |
{ | |
"code": "2452 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 86, | |
"b": 121 | |
}, | |
"positionInBook": 46 | |
}, | |
{ | |
"code": "2453 U", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 146, | |
"b": 193 | |
}, | |
"positionInBook": 47 | |
}, | |
{ | |
"code": "3520 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 121, | |
"b": 186 | |
}, | |
"positionInBook": 48 | |
}, | |
{ | |
"code": "3559 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 94, | |
"b": 155 | |
}, | |
"positionInBook": 49 | |
}, | |
{ | |
"code": "3593 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 111, | |
"b": 170 | |
}, | |
"positionInBook": 50 | |
}, | |
{ | |
"code": "3575 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 114, | |
"b": 186 | |
}, | |
"positionInBook": 51 | |
}, | |
{ | |
"code": "3543 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 132, | |
"b": 202 | |
}, | |
"positionInBook": 52 | |
}, | |
{ | |
"code": "3515 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 70, | |
"b": 125 | |
}, | |
"positionInBook": 53 | |
}, | |
{ | |
"code": "3558 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 148, | |
"b": 205 | |
}, | |
"positionInBook": 54 | |
}, | |
{ | |
"code": "3555 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 82, | |
"b": 124 | |
}, | |
"positionInBook": 55 | |
}, | |
{ | |
"code": "3583 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 78, | |
"b": 131 | |
}, | |
"positionInBook": 56 | |
}, | |
{ | |
"code": "3574 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 98, | |
"b": 127 | |
}, | |
"positionInBook": 57 | |
}, | |
{ | |
"code": "3566 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 83, | |
"b": 119 | |
}, | |
"positionInBook": 58 | |
}, | |
{ | |
"code": "3535 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 71, | |
"b": 126 | |
}, | |
"positionInBook": 59 | |
}, | |
{ | |
"code": "3542 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 76, | |
"b": 125 | |
}, | |
"positionInBook": 60 | |
}, | |
{ | |
"code": "3506 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 113, | |
"b": 169 | |
}, | |
"positionInBook": 61 | |
}, | |
{ | |
"code": "3590 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 107, | |
"b": 157 | |
}, | |
"positionInBook": 62 | |
}, | |
{ | |
"code": "3584 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 94, | |
"b": 130 | |
}, | |
"positionInBook": 63 | |
}, | |
{ | |
"code": "3591 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 87, | |
"b": 133 | |
}, | |
"positionInBook": 64 | |
}, | |
{ | |
"code": "3597 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 91, | |
"b": 123 | |
}, | |
"positionInBook": 65 | |
}, | |
{ | |
"code": "3581 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 88, | |
"b": 119 | |
}, | |
"positionInBook": 66 | |
}, | |
{ | |
"code": "3524 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 85, | |
"b": 103 | |
}, | |
"positionInBook": 67 | |
}, | |
{ | |
"code": "3577 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 174, | |
"b": 208 | |
}, | |
"positionInBook": 68 | |
}, | |
{ | |
"code": "3545 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 181, | |
"b": 224 | |
}, | |
"positionInBook": 69 | |
}, | |
{ | |
"code": "3551 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 157, | |
"b": 187 | |
}, | |
"positionInBook": 70 | |
}, | |
{ | |
"code": "3538 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 140, | |
"b": 202 | |
}, | |
"positionInBook": 71 | |
}, | |
{ | |
"code": "3553 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 173 | |
}, | |
"positionInBook": 72 | |
}, | |
{ | |
"code": "2454 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 124, | |
"b": 153 | |
}, | |
"positionInBook": 73 | |
}, | |
{ | |
"code": "3526 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 133, | |
"b": 141 | |
}, | |
"positionInBook": 74 | |
}, | |
{ | |
"code": "2455 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 182, | |
"b": 173 | |
}, | |
"positionInBook": 75 | |
}, | |
{ | |
"code": "3533 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 210, | |
"b": 184 | |
}, | |
"positionInBook": 76 | |
}, | |
{ | |
"code": "3534 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 166, | |
"b": 152 | |
}, | |
"positionInBook": 77 | |
}, | |
{ | |
"code": "2456 U", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 152, | |
"b": 138 | |
}, | |
"positionInBook": 78 | |
}, | |
{ | |
"code": "3560 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 172, | |
"b": 160 | |
}, | |
"positionInBook": 79 | |
}, | |
{ | |
"code": "3557 U", | |
"name": null, | |
"rgb": { | |
"r": 27, | |
"g": 118, | |
"b": 121 | |
}, | |
"positionInBook": 80 | |
}, | |
{ | |
"code": "3541 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 148, | |
"b": 156 | |
}, | |
"positionInBook": 81 | |
}, | |
{ | |
"code": "2457 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 163, | |
"b": 148 | |
}, | |
"positionInBook": 82 | |
}, | |
{ | |
"code": "2458 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 151, | |
"b": 134 | |
}, | |
"positionInBook": 83 | |
}, | |
{ | |
"code": "2459 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 170, | |
"b": 144 | |
}, | |
"positionInBook": 84 | |
}, | |
{ | |
"code": "2460 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 162, | |
"b": 158 | |
}, | |
"positionInBook": 85 | |
}, | |
{ | |
"code": "2461 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 140, | |
"b": 137 | |
}, | |
"positionInBook": 86 | |
}, | |
{ | |
"code": "2462 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 131, | |
"b": 126 | |
}, | |
"positionInBook": 87 | |
}, | |
{ | |
"code": "2463 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 125, | |
"b": 122 | |
}, | |
"positionInBook": 88 | |
}, | |
{ | |
"code": "2464 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 187, | |
"b": 120 | |
}, | |
"positionInBook": 89 | |
}, | |
{ | |
"code": "2465 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 119, | |
"b": 84 | |
}, | |
"positionInBook": 90 | |
}, | |
{ | |
"code": "3522 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 83 | |
}, | |
"positionInBook": 91 | |
}, | |
{ | |
"code": "3536 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 95 | |
}, | |
"positionInBook": 92 | |
}, | |
{ | |
"code": "3500 U", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 117, | |
"b": 88 | |
}, | |
"positionInBook": 93 | |
}, | |
{ | |
"code": "3537 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 104, | |
"b": 87 | |
}, | |
"positionInBook": 94 | |
}, | |
{ | |
"code": "2466 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 96, | |
"b": 96 | |
}, | |
"positionInBook": 95 | |
}, | |
{ | |
"code": "3570 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 204, | |
"b": 35 | |
}, | |
"positionInBook": 96 | |
}, | |
{ | |
"code": "3507 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 205, | |
"b": 52 | |
}, | |
"positionInBook": 97 | |
}, | |
{ | |
"code": "3561 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 191, | |
"b": 58 | |
}, | |
"positionInBook": 98 | |
}, | |
{ | |
"code": "3501 U", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 167, | |
"b": 74 | |
}, | |
"positionInBook": 99 | |
}, | |
{ | |
"code": "3529 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 167, | |
"b": 82 | |
}, | |
"positionInBook": 100 | |
}, | |
{ | |
"code": "3539 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 158, | |
"b": 87 | |
}, | |
"positionInBook": 101 | |
}, | |
{ | |
"code": "3508 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 131, | |
"b": 90 | |
}, | |
"positionInBook": 102 | |
}, | |
{ | |
"code": "3599 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 189, | |
"b": 128 | |
}, | |
"positionInBook": 103 | |
}, | |
{ | |
"code": "2467 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 156, | |
"b": 127 | |
}, | |
"positionInBook": 104 | |
}, | |
{ | |
"code": "2468 U", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 127, | |
"b": 110 | |
}, | |
"positionInBook": 105 | |
}, | |
{ | |
"code": "2469 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 114, | |
"b": 97 | |
}, | |
"positionInBook": 106 | |
}, | |
{ | |
"code": "2470 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 138, | |
"b": 119 | |
}, | |
"positionInBook": 107 | |
}, | |
{ | |
"code": "2471 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 147, | |
"b": 134 | |
}, | |
"positionInBook": 108 | |
}, | |
{ | |
"code": "2472 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 99, | |
"b": 85 | |
}, | |
"positionInBook": 109 | |
}, | |
{ | |
"code": "2473 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 187, | |
"b": 192 | |
}, | |
"positionInBook": 110 | |
}, | |
{ | |
"code": "2474 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 169, | |
"b": 161 | |
}, | |
"positionInBook": 111 | |
}, | |
{ | |
"code": "2475 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 147, | |
"b": 142 | |
}, | |
"positionInBook": 112 | |
}, | |
{ | |
"code": "2476 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 133, | |
"b": 132 | |
}, | |
"positionInBook": 113 | |
}, | |
{ | |
"code": "2477 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 115, | |
"b": 112 | |
}, | |
"positionInBook": 114 | |
}, | |
{ | |
"code": "2478 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 90, | |
"b": 92 | |
}, | |
"positionInBook": 115 | |
}, | |
{ | |
"code": "2479 U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 90, | |
"b": 87 | |
}, | |
"positionInBook": 116 | |
}, | |
{ | |
"code": "100 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 243, | |
"b": 128 | |
}, | |
"positionInBook": 117 | |
}, | |
{ | |
"code": "101 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 241, | |
"b": 102 | |
}, | |
"positionInBook": 118 | |
}, | |
{ | |
"code": "102 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 236, | |
"b": 45 | |
}, | |
"positionInBook": 119 | |
}, | |
{ | |
"code": "Yellow U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 232, | |
"b": 0 | |
}, | |
"positionInBook": 120 | |
}, | |
{ | |
"code": "103 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 159, | |
"b": 41 | |
}, | |
"positionInBook": 121 | |
}, | |
{ | |
"code": "104 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 141, | |
"b": 57 | |
}, | |
"positionInBook": 122 | |
}, | |
{ | |
"code": "105 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 117, | |
"b": 71 | |
}, | |
"positionInBook": 123 | |
}, | |
{ | |
"code": "7401 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 229, | |
"b": 165 | |
}, | |
"positionInBook": 124 | |
}, | |
{ | |
"code": "7402 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 218, | |
"b": 154 | |
}, | |
"positionInBook": 125 | |
}, | |
{ | |
"code": "7403 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 207, | |
"b": 129 | |
}, | |
"positionInBook": 126 | |
}, | |
{ | |
"code": "7404 U", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 207, | |
"b": 65 | |
}, | |
"positionInBook": 127 | |
}, | |
{ | |
"code": "7405 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 177, | |
"b": 14 | |
}, | |
"positionInBook": 128 | |
}, | |
{ | |
"code": "7406 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 184, | |
"b": 40 | |
}, | |
"positionInBook": 129 | |
}, | |
{ | |
"code": "7407 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 163, | |
"b": 110 | |
}, | |
"positionInBook": 130 | |
}, | |
{ | |
"code": "2001 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 236, | |
"b": 159 | |
}, | |
"positionInBook": 131 | |
}, | |
{ | |
"code": "2002 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 232, | |
"b": 133 | |
}, | |
"positionInBook": 132 | |
}, | |
{ | |
"code": "2003 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 232, | |
"b": 117 | |
}, | |
"positionInBook": 133 | |
}, | |
{ | |
"code": "2004 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 225, | |
"b": 127 | |
}, | |
"positionInBook": 134 | |
}, | |
{ | |
"code": "2005 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 219, | |
"b": 131 | |
}, | |
"positionInBook": 135 | |
}, | |
{ | |
"code": "2006 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 192, | |
"b": 104 | |
}, | |
"positionInBook": 136 | |
}, | |
{ | |
"code": "2007 U", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 168, | |
"b": 85 | |
}, | |
"positionInBook": 137 | |
}, | |
{ | |
"code": "106 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 235, | |
"b": 104 | |
}, | |
"positionInBook": 138 | |
}, | |
{ | |
"code": "107 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 229, | |
"b": 82 | |
}, | |
"positionInBook": 139 | |
}, | |
{ | |
"code": "108 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 221, | |
"b": 53 | |
}, | |
"positionInBook": 140 | |
}, | |
{ | |
"code": "109 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 199, | |
"b": 0 | |
}, | |
"positionInBook": 141 | |
}, | |
{ | |
"code": "110 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 159, | |
"b": 38 | |
}, | |
"positionInBook": 142 | |
}, | |
{ | |
"code": "111 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 135, | |
"b": 59 | |
}, | |
"positionInBook": 143 | |
}, | |
{ | |
"code": "112 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 122, | |
"b": 62 | |
}, | |
"positionInBook": 144 | |
}, | |
{ | |
"code": "113 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 225, | |
"b": 94 | |
}, | |
"positionInBook": 145 | |
}, | |
{ | |
"code": "114 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 217, | |
"b": 74 | |
}, | |
"positionInBook": 146 | |
}, | |
{ | |
"code": "115 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 206, | |
"b": 46 | |
}, | |
"positionInBook": 147 | |
}, | |
{ | |
"code": "116 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 181, | |
"b": 17 | |
}, | |
"positionInBook": 148 | |
}, | |
{ | |
"code": "117 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 140, | |
"b": 48 | |
}, | |
"positionInBook": 149 | |
}, | |
{ | |
"code": "118 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 129, | |
"b": 57 | |
}, | |
"positionInBook": 150 | |
}, | |
{ | |
"code": "119 U", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 119, | |
"b": 72 | |
}, | |
"positionInBook": 151 | |
}, | |
{ | |
"code": "127 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 227, | |
"b": 133 | |
}, | |
"positionInBook": 152 | |
}, | |
{ | |
"code": "128 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 207, | |
"b": 97 | |
}, | |
"positionInBook": 153 | |
}, | |
{ | |
"code": "129 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 175, | |
"b": 63 | |
}, | |
"positionInBook": 154 | |
}, | |
{ | |
"code": "130 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 155, | |
"b": 47 | |
}, | |
"positionInBook": 155 | |
}, | |
{ | |
"code": "131 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 128, | |
"b": 50 | |
}, | |
"positionInBook": 156 | |
}, | |
{ | |
"code": "132 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 122, | |
"b": 60 | |
}, | |
"positionInBook": 157 | |
}, | |
{ | |
"code": "133 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 112, | |
"b": 71 | |
}, | |
"positionInBook": 158 | |
}, | |
{ | |
"code": "1205 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 228, | |
"b": 149 | |
}, | |
"positionInBook": 159 | |
}, | |
{ | |
"code": "1215 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 218, | |
"b": 126 | |
}, | |
"positionInBook": 160 | |
}, | |
{ | |
"code": "1225 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 187, | |
"b": 79 | |
}, | |
"positionInBook": 161 | |
}, | |
{ | |
"code": "1235 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 174, | |
"b": 59 | |
}, | |
"positionInBook": 162 | |
}, | |
{ | |
"code": "1245 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 139, | |
"b": 65 | |
}, | |
"positionInBook": 163 | |
}, | |
{ | |
"code": "1255 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 130, | |
"b": 70 | |
}, | |
"positionInBook": 164 | |
}, | |
{ | |
"code": "1265 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 117, | |
"b": 73 | |
}, | |
"positionInBook": 165 | |
}, | |
{ | |
"code": "120 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 217, | |
"b": 106 | |
}, | |
"positionInBook": 166 | |
}, | |
{ | |
"code": "121 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 204, | |
"b": 82 | |
}, | |
"positionInBook": 167 | |
}, | |
{ | |
"code": "122 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 192, | |
"b": 63 | |
}, | |
"positionInBook": 168 | |
}, | |
{ | |
"code": "123 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 172, | |
"b": 42 | |
}, | |
"positionInBook": 169 | |
}, | |
{ | |
"code": "124 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 145, | |
"b": 51 | |
}, | |
"positionInBook": 170 | |
}, | |
{ | |
"code": "125 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 129, | |
"b": 61 | |
}, | |
"positionInBook": 171 | |
}, | |
{ | |
"code": "126 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 119, | |
"b": 66 | |
}, | |
"positionInBook": 172 | |
}, | |
{ | |
"code": "7548 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 201, | |
"b": 21 | |
}, | |
"positionInBook": 173 | |
}, | |
{ | |
"code": "7549 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 184, | |
"b": 56 | |
}, | |
"positionInBook": 174 | |
}, | |
{ | |
"code": "7550 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 151, | |
"b": 62 | |
}, | |
"positionInBook": 175 | |
}, | |
{ | |
"code": "7551 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 134, | |
"b": 68 | |
}, | |
"positionInBook": 176 | |
}, | |
{ | |
"code": "7552 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 111, | |
"b": 75 | |
}, | |
"positionInBook": 177 | |
}, | |
{ | |
"code": "7553 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 101, | |
"b": 75 | |
}, | |
"positionInBook": 178 | |
}, | |
{ | |
"code": "7554 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 101, | |
"b": 88 | |
}, | |
"positionInBook": 179 | |
}, | |
{ | |
"code": "7555 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 169, | |
"b": 90 | |
}, | |
"positionInBook": 180 | |
}, | |
{ | |
"code": "7556 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 153, | |
"b": 93 | |
}, | |
"positionInBook": 181 | |
}, | |
{ | |
"code": "7557 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 141, | |
"b": 95 | |
}, | |
"positionInBook": 182 | |
}, | |
{ | |
"code": "7558 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 131, | |
"b": 94 | |
}, | |
"positionInBook": 183 | |
}, | |
{ | |
"code": "7559 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 127, | |
"b": 94 | |
}, | |
"positionInBook": 184 | |
}, | |
{ | |
"code": "7560 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 126, | |
"b": 98 | |
}, | |
"positionInBook": 185 | |
}, | |
{ | |
"code": "7561 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 121, | |
"b": 100 | |
}, | |
"positionInBook": 186 | |
}, | |
{ | |
"code": "134 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 211, | |
"b": 120 | |
}, | |
"positionInBook": 187 | |
}, | |
{ | |
"code": "135 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 194, | |
"b": 103 | |
}, | |
"positionInBook": 188 | |
}, | |
{ | |
"code": "136 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 173, | |
"b": 74 | |
}, | |
"positionInBook": 189 | |
}, | |
{ | |
"code": "137 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 159, | |
"b": 55 | |
}, | |
"positionInBook": 190 | |
}, | |
{ | |
"code": "138 U", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 124, | |
"b": 50 | |
}, | |
"positionInBook": 191 | |
}, | |
{ | |
"code": "139 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 111, | |
"b": 60 | |
}, | |
"positionInBook": 192 | |
}, | |
{ | |
"code": "140 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 106, | |
"b": 69 | |
}, | |
"positionInBook": 193 | |
}, | |
{ | |
"code": "2008 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 190, | |
"b": 119 | |
}, | |
"positionInBook": 194 | |
}, | |
{ | |
"code": "2009 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 176, | |
"b": 106 | |
}, | |
"positionInBook": 195 | |
}, | |
{ | |
"code": "2010 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 178, | |
"b": 15 | |
}, | |
"positionInBook": 196 | |
}, | |
{ | |
"code": "2011 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 153, | |
"b": 88 | |
}, | |
"positionInBook": 197 | |
}, | |
{ | |
"code": "2012 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 153, | |
"b": 65 | |
}, | |
"positionInBook": 198 | |
}, | |
{ | |
"code": "2013 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 159, | |
"b": 36 | |
}, | |
"positionInBook": 199 | |
}, | |
{ | |
"code": "2014 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 130, | |
"b": 63 | |
}, | |
"positionInBook": 200 | |
}, | |
{ | |
"code": "1345 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 213, | |
"b": 145 | |
}, | |
"positionInBook": 201 | |
}, | |
{ | |
"code": "1355 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 200, | |
"b": 126 | |
}, | |
"positionInBook": 202 | |
}, | |
{ | |
"code": "1365 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 173, | |
"b": 91 | |
}, | |
"positionInBook": 203 | |
}, | |
{ | |
"code": "1375 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 153, | |
"b": 64 | |
}, | |
"positionInBook": 204 | |
}, | |
{ | |
"code": "1385 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 126, | |
"b": 62 | |
}, | |
"positionInBook": 205 | |
}, | |
{ | |
"code": "1395 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 110, | |
"b": 67 | |
}, | |
"positionInBook": 206 | |
}, | |
{ | |
"code": "1405 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 102, | |
"b": 72 | |
}, | |
"positionInBook": 207 | |
}, | |
{ | |
"code": "141 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 193, | |
"b": 110 | |
}, | |
"positionInBook": 208 | |
}, | |
{ | |
"code": "142 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 176, | |
"b": 93 | |
}, | |
"positionInBook": 209 | |
}, | |
{ | |
"code": "143 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 160, | |
"b": 77 | |
}, | |
"positionInBook": 210 | |
}, | |
{ | |
"code": "144 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 140, | |
"b": 60 | |
}, | |
"positionInBook": 211 | |
}, | |
{ | |
"code": "145 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 127, | |
"b": 58 | |
}, | |
"positionInBook": 212 | |
}, | |
{ | |
"code": "146 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 116, | |
"b": 65 | |
}, | |
"positionInBook": 213 | |
}, | |
{ | |
"code": "147 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 105, | |
"b": 74 | |
}, | |
"positionInBook": 214 | |
}, | |
{ | |
"code": "7408 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 157, | |
"b": 38 | |
}, | |
"positionInBook": 215 | |
}, | |
{ | |
"code": "7409 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 173, | |
"b": 80 | |
}, | |
"positionInBook": 216 | |
}, | |
{ | |
"code": "7410 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 160, | |
"b": 110 | |
}, | |
"positionInBook": 217 | |
}, | |
{ | |
"code": "7411 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 161, | |
"b": 111 | |
}, | |
"positionInBook": 218 | |
}, | |
{ | |
"code": "7412 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 140, | |
"b": 96 | |
}, | |
"positionInBook": 219 | |
}, | |
{ | |
"code": "7413 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 137, | |
"b": 88 | |
}, | |
"positionInBook": 220 | |
}, | |
{ | |
"code": "7414 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 127, | |
"b": 83 | |
}, | |
"positionInBook": 221 | |
}, | |
{ | |
"code": "7562 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 160, | |
"b": 120 | |
}, | |
"positionInBook": 222 | |
}, | |
{ | |
"code": "7563 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 165, | |
"b": 99 | |
}, | |
"positionInBook": 223 | |
}, | |
{ | |
"code": "7564 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 152, | |
"b": 88 | |
}, | |
"positionInBook": 224 | |
}, | |
{ | |
"code": "7565 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 134, | |
"b": 89 | |
}, | |
"positionInBook": 225 | |
}, | |
{ | |
"code": "7566 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 123, | |
"b": 94 | |
}, | |
"positionInBook": 226 | |
}, | |
{ | |
"code": "7567 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 112, | |
"b": 92 | |
}, | |
"positionInBook": 227 | |
}, | |
{ | |
"code": "7568 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 109, | |
"b": 94 | |
}, | |
"positionInBook": 228 | |
}, | |
{ | |
"code": "7569 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 142, | |
"b": 86 | |
}, | |
"positionInBook": 229 | |
}, | |
{ | |
"code": "7570 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 141, | |
"b": 91 | |
}, | |
"positionInBook": 230 | |
}, | |
{ | |
"code": "7571 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 137, | |
"b": 93 | |
}, | |
"positionInBook": 231 | |
}, | |
{ | |
"code": "7572 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 127, | |
"b": 92 | |
}, | |
"positionInBook": 232 | |
}, | |
{ | |
"code": "7573 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 123, | |
"b": 89 | |
}, | |
"positionInBook": 233 | |
}, | |
{ | |
"code": "7574 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 120, | |
"b": 91 | |
}, | |
"positionInBook": 234 | |
}, | |
{ | |
"code": "7575 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 113, | |
"b": 90 | |
}, | |
"positionInBook": 235 | |
}, | |
{ | |
"code": "712 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 202, | |
"b": 157 | |
}, | |
"positionInBook": 236 | |
}, | |
{ | |
"code": "713 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 193, | |
"b": 144 | |
}, | |
"positionInBook": 237 | |
}, | |
{ | |
"code": "714 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 176, | |
"b": 123 | |
}, | |
"positionInBook": 238 | |
}, | |
{ | |
"code": "715 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 153, | |
"b": 99 | |
}, | |
"positionInBook": 239 | |
}, | |
{ | |
"code": "716 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 134, | |
"b": 81 | |
}, | |
"positionInBook": 240 | |
}, | |
{ | |
"code": "717 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 117, | |
"b": 64 | |
}, | |
"positionInBook": 241 | |
}, | |
{ | |
"code": "718 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 108, | |
"b": 61 | |
}, | |
"positionInBook": 242 | |
}, | |
{ | |
"code": "2015 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 218, | |
"b": 182 | |
}, | |
"positionInBook": 243 | |
}, | |
{ | |
"code": "2016 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 193, | |
"b": 135 | |
}, | |
"positionInBook": 244 | |
}, | |
{ | |
"code": "2017 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 183, | |
"b": 130 | |
}, | |
"positionInBook": 245 | |
}, | |
{ | |
"code": "2018 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 138, | |
"b": 64 | |
}, | |
"positionInBook": 246 | |
}, | |
{ | |
"code": "2019 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 131, | |
"b": 76 | |
}, | |
"positionInBook": 247 | |
}, | |
{ | |
"code": "2020 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 113, | |
"b": 61 | |
}, | |
"positionInBook": 248 | |
}, | |
{ | |
"code": "2021 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 99, | |
"b": 61 | |
}, | |
"positionInBook": 249 | |
}, | |
{ | |
"code": "148 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 198, | |
"b": 136 | |
}, | |
"positionInBook": 250 | |
}, | |
{ | |
"code": "149 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 181, | |
"b": 117 | |
}, | |
"positionInBook": 251 | |
}, | |
{ | |
"code": "150 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 153, | |
"b": 85 | |
}, | |
"positionInBook": 252 | |
}, | |
{ | |
"code": "151 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 136, | |
"b": 62 | |
}, | |
"positionInBook": 253 | |
}, | |
{ | |
"code": "152 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 122, | |
"b": 63 | |
}, | |
"positionInBook": 254 | |
}, | |
{ | |
"code": "153 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 111, | |
"b": 66 | |
}, | |
"positionInBook": 255 | |
}, | |
{ | |
"code": "154 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 104, | |
"b": 68 | |
}, | |
"positionInBook": 256 | |
}, | |
{ | |
"code": "155 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 201, | |
"b": 149 | |
}, | |
"positionInBook": 257 | |
}, | |
{ | |
"code": "156 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 185, | |
"b": 132 | |
}, | |
"positionInBook": 258 | |
}, | |
{ | |
"code": "157 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 150, | |
"b": 98 | |
}, | |
"positionInBook": 259 | |
}, | |
{ | |
"code": "158 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 127, | |
"b": 75 | |
}, | |
"positionInBook": 260 | |
}, | |
{ | |
"code": "159 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 113, | |
"b": 70 | |
}, | |
"positionInBook": 261 | |
}, | |
{ | |
"code": "160 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 107, | |
"b": 71 | |
}, | |
"positionInBook": 262 | |
}, | |
{ | |
"code": "161 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 98, | |
"b": 73 | |
}, | |
"positionInBook": 263 | |
}, | |
{ | |
"code": "1485 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 165, | |
"b": 99 | |
}, | |
"positionInBook": 264 | |
}, | |
{ | |
"code": "1495 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 147, | |
"b": 81 | |
}, | |
"positionInBook": 265 | |
}, | |
{ | |
"code": "1505 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 128, | |
"b": 57 | |
}, | |
"positionInBook": 266 | |
}, | |
{ | |
"code": "Orange 021 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 108, | |
"b": 47 | |
}, | |
"positionInBook": 267 | |
}, | |
{ | |
"code": "1525 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 100, | |
"b": 57 | |
}, | |
"positionInBook": 268 | |
}, | |
{ | |
"code": "1535 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 98, | |
"b": 65 | |
}, | |
"positionInBook": 269 | |
}, | |
{ | |
"code": "1545 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 95, | |
"b": 72 | |
}, | |
"positionInBook": 270 | |
}, | |
{ | |
"code": "1555 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 194, | |
"b": 158 | |
}, | |
"positionInBook": 271 | |
}, | |
{ | |
"code": "1565 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 170, | |
"b": 129 | |
}, | |
"positionInBook": 272 | |
}, | |
{ | |
"code": "1575 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 150, | |
"b": 101 | |
}, | |
"positionInBook": 273 | |
}, | |
{ | |
"code": "1585 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 132, | |
"b": 80 | |
}, | |
"positionInBook": 274 | |
}, | |
{ | |
"code": "1595 U", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 112, | |
"b": 70 | |
}, | |
"positionInBook": 275 | |
}, | |
{ | |
"code": "1605 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 108, | |
"b": 76 | |
}, | |
"positionInBook": 276 | |
}, | |
{ | |
"code": "1615 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 101, | |
"b": 74 | |
}, | |
"positionInBook": 277 | |
}, | |
{ | |
"code": "2022 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 170, | |
"b": 143 | |
}, | |
"positionInBook": 278 | |
}, | |
{ | |
"code": "2023 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 156, | |
"b": 129 | |
}, | |
"positionInBook": 279 | |
}, | |
{ | |
"code": "2024 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 136, | |
"b": 112 | |
}, | |
"positionInBook": 280 | |
}, | |
{ | |
"code": "2025 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 149, | |
"b": 96 | |
}, | |
"positionInBook": 281 | |
}, | |
{ | |
"code": "2026 U", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 118, | |
"b": 96 | |
}, | |
"positionInBook": 282 | |
}, | |
{ | |
"code": "2027 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 108, | |
"b": 99 | |
}, | |
"positionInBook": 283 | |
}, | |
{ | |
"code": "2028 U", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 81, | |
"b": 54 | |
}, | |
"positionInBook": 284 | |
}, | |
{ | |
"code": "162 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 187, | |
"b": 155 | |
}, | |
"positionInBook": 285 | |
}, | |
{ | |
"code": "163 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 156, | |
"b": 118 | |
}, | |
"positionInBook": 286 | |
}, | |
{ | |
"code": "164 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 134, | |
"b": 95 | |
}, | |
"positionInBook": 287 | |
}, | |
{ | |
"code": "165 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 117, | |
"b": 72 | |
}, | |
"positionInBook": 288 | |
}, | |
{ | |
"code": "166 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 103, | |
"b": 64 | |
}, | |
"positionInBook": 289 | |
}, | |
{ | |
"code": "167 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 102, | |
"b": 71 | |
}, | |
"positionInBook": 290 | |
}, | |
{ | |
"code": "168 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 97, | |
"b": 75 | |
}, | |
"positionInBook": 291 | |
}, | |
{ | |
"code": "7576 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 142, | |
"b": 107 | |
}, | |
"positionInBook": 292 | |
}, | |
{ | |
"code": "7577 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 139, | |
"b": 99 | |
}, | |
"positionInBook": 293 | |
}, | |
{ | |
"code": "7578 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 125, | |
"b": 89 | |
}, | |
"positionInBook": 294 | |
}, | |
{ | |
"code": "7579 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 115, | |
"b": 87 | |
}, | |
"positionInBook": 295 | |
}, | |
{ | |
"code": "7580 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 109, | |
"b": 89 | |
}, | |
"positionInBook": 296 | |
}, | |
{ | |
"code": "7581 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 107, | |
"b": 93 | |
}, | |
"positionInBook": 297 | |
}, | |
{ | |
"code": "7582 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 104, | |
"b": 94 | |
}, | |
"positionInBook": 298 | |
}, | |
{ | |
"code": "1625 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 168, | |
"b": 145 | |
}, | |
"positionInBook": 299 | |
}, | |
{ | |
"code": "1635 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 150, | |
"b": 126 | |
}, | |
"positionInBook": 300 | |
}, | |
{ | |
"code": "1645 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 127, | |
"b": 97 | |
}, | |
"positionInBook": 301 | |
}, | |
{ | |
"code": "1655 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 111, | |
"b": 76 | |
}, | |
"positionInBook": 302 | |
}, | |
{ | |
"code": "1665 U", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 104, | |
"b": 73 | |
}, | |
"positionInBook": 303 | |
}, | |
{ | |
"code": "1675 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 97, | |
"b": 74 | |
}, | |
"positionInBook": 304 | |
}, | |
{ | |
"code": "1685 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 97, | |
"b": 77 | |
}, | |
"positionInBook": 305 | |
}, | |
{ | |
"code": "169 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 183, | |
"b": 174 | |
}, | |
"positionInBook": 306 | |
}, | |
{ | |
"code": "170 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 141, | |
"b": 126 | |
}, | |
"positionInBook": 307 | |
}, | |
{ | |
"code": "171 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 120, | |
"b": 101 | |
}, | |
"positionInBook": 308 | |
}, | |
{ | |
"code": "172 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 103, | |
"b": 77 | |
}, | |
"positionInBook": 309 | |
}, | |
{ | |
"code": "173 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 97, | |
"b": 74 | |
}, | |
"positionInBook": 310 | |
}, | |
{ | |
"code": "174 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 91, | |
"b": 74 | |
}, | |
"positionInBook": 311 | |
}, | |
{ | |
"code": "175 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 89, | |
"b": 77 | |
}, | |
"positionInBook": 312 | |
}, | |
{ | |
"code": "7583 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 125, | |
"b": 95 | |
}, | |
"positionInBook": 313 | |
}, | |
{ | |
"code": "7584 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 119, | |
"b": 89 | |
}, | |
"positionInBook": 314 | |
}, | |
{ | |
"code": "7585 U", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 121, | |
"b": 101 | |
}, | |
"positionInBook": 315 | |
}, | |
{ | |
"code": "7586 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 113, | |
"b": 93 | |
}, | |
"positionInBook": 316 | |
}, | |
{ | |
"code": "7587 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 110, | |
"b": 92 | |
}, | |
"positionInBook": 317 | |
}, | |
{ | |
"code": "7588 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 110, | |
"b": 97 | |
}, | |
"positionInBook": 318 | |
}, | |
{ | |
"code": "7589 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 106, | |
"b": 99 | |
}, | |
"positionInBook": 319 | |
}, | |
{ | |
"code": "7590 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 188, | |
"b": 169 | |
}, | |
"positionInBook": 320 | |
}, | |
{ | |
"code": "7591 U", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 141, | |
"b": 120 | |
}, | |
"positionInBook": 321 | |
}, | |
{ | |
"code": "7592 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 114, | |
"b": 96 | |
}, | |
"positionInBook": 322 | |
}, | |
{ | |
"code": "7593 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 104, | |
"b": 89 | |
}, | |
"positionInBook": 323 | |
}, | |
{ | |
"code": "7594 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 100, | |
"b": 90 | |
}, | |
"positionInBook": 324 | |
}, | |
{ | |
"code": "7595 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 102, | |
"b": 92 | |
}, | |
"positionInBook": 325 | |
}, | |
{ | |
"code": "7596 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 103, | |
"b": 96 | |
}, | |
"positionInBook": 326 | |
}, | |
{ | |
"code": "7597 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 103, | |
"b": 86 | |
}, | |
"positionInBook": 327 | |
}, | |
{ | |
"code": "7598 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 109, | |
"b": 92 | |
}, | |
"positionInBook": 328 | |
}, | |
{ | |
"code": "7599 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 105, | |
"b": 90 | |
}, | |
"positionInBook": 329 | |
}, | |
{ | |
"code": "7600 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 106, | |
"b": 94 | |
}, | |
"positionInBook": 330 | |
}, | |
{ | |
"code": "7601 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 105, | |
"b": 92 | |
}, | |
"positionInBook": 331 | |
}, | |
{ | |
"code": "7602 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 110, | |
"b": 97 | |
}, | |
"positionInBook": 332 | |
}, | |
{ | |
"code": "7603 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 103, | |
"b": 93 | |
}, | |
"positionInBook": 333 | |
}, | |
{ | |
"code": "7604 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 216, | |
"b": 214 | |
}, | |
"positionInBook": 334 | |
}, | |
{ | |
"code": "7605 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 196, | |
"b": 190 | |
}, | |
"positionInBook": 335 | |
}, | |
{ | |
"code": "7606 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 160, | |
"b": 154 | |
}, | |
"positionInBook": 336 | |
}, | |
{ | |
"code": "7607 U", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 134, | |
"b": 127 | |
}, | |
"positionInBook": 337 | |
}, | |
{ | |
"code": "7608 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 110, | |
"b": 103 | |
}, | |
"positionInBook": 338 | |
}, | |
{ | |
"code": "7609 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 102, | |
"b": 96 | |
}, | |
"positionInBook": 339 | |
}, | |
{ | |
"code": "7610 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 97, | |
"b": 94 | |
}, | |
"positionInBook": 340 | |
}, | |
{ | |
"code": "2337 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 183, | |
"b": 174 | |
}, | |
"positionInBook": 341 | |
}, | |
{ | |
"code": "2338 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 157, | |
"b": 151 | |
}, | |
"positionInBook": 342 | |
}, | |
{ | |
"code": "2339 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 145, | |
"b": 142 | |
}, | |
"positionInBook": 343 | |
}, | |
{ | |
"code": "2340 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 122, | |
"b": 126 | |
}, | |
"positionInBook": 344 | |
}, | |
{ | |
"code": "2341 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 117, | |
"b": 117 | |
}, | |
"positionInBook": 345 | |
}, | |
{ | |
"code": "2342 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 109, | |
"b": 115 | |
}, | |
"positionInBook": 346 | |
}, | |
{ | |
"code": "2343 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 108, | |
"b": 117 | |
}, | |
"positionInBook": 347 | |
}, | |
{ | |
"code": "7611 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 200, | |
"b": 190 | |
}, | |
"positionInBook": 348 | |
}, | |
{ | |
"code": "7612 U", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 170, | |
"b": 160 | |
}, | |
"positionInBook": 349 | |
}, | |
{ | |
"code": "7613 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 159, | |
"b": 151 | |
}, | |
"positionInBook": 350 | |
}, | |
{ | |
"code": "7614 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 146, | |
"b": 140 | |
}, | |
"positionInBook": 351 | |
}, | |
{ | |
"code": "7615 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 132, | |
"b": 128 | |
}, | |
"positionInBook": 352 | |
}, | |
{ | |
"code": "7616 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 116, | |
"b": 116 | |
}, | |
"positionInBook": 353 | |
}, | |
{ | |
"code": "7617 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 102, | |
"b": 103 | |
}, | |
"positionInBook": 354 | |
}, | |
{ | |
"code": "7520 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 196, | |
"b": 191 | |
}, | |
"positionInBook": 355 | |
}, | |
{ | |
"code": "7521 U", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 161, | |
"b": 149 | |
}, | |
"positionInBook": 356 | |
}, | |
{ | |
"code": "7522 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 120, | |
"b": 113 | |
}, | |
"positionInBook": 357 | |
}, | |
{ | |
"code": "7523 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 117, | |
"b": 118 | |
}, | |
"positionInBook": 358 | |
}, | |
{ | |
"code": "7524 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 109, | |
"b": 106 | |
}, | |
"positionInBook": 359 | |
}, | |
{ | |
"code": "7525 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 121, | |
"b": 112 | |
}, | |
"positionInBook": 360 | |
}, | |
{ | |
"code": "7526 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 95, | |
"b": 82 | |
}, | |
"positionInBook": 361 | |
}, | |
{ | |
"code": "489 U", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 199, | |
"b": 184 | |
}, | |
"positionInBook": 362 | |
}, | |
{ | |
"code": "488 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 185, | |
"b": 169 | |
}, | |
"positionInBook": 363 | |
}, | |
{ | |
"code": "487 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 162, | |
"b": 147 | |
}, | |
"positionInBook": 364 | |
}, | |
{ | |
"code": "486 U", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 141, | |
"b": 128 | |
}, | |
"positionInBook": 365 | |
}, | |
{ | |
"code": "485 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 93, | |
"b": 80 | |
}, | |
"positionInBook": 366 | |
}, | |
{ | |
"code": "484 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 91, | |
"b": 78 | |
}, | |
"positionInBook": 367 | |
}, | |
{ | |
"code": "483 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 91, | |
"b": 79 | |
}, | |
"positionInBook": 368 | |
}, | |
{ | |
"code": "2029 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 134, | |
"b": 132 | |
}, | |
"positionInBook": 369 | |
}, | |
{ | |
"code": "2030 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 141, | |
"b": 138 | |
}, | |
"positionInBook": 370 | |
}, | |
{ | |
"code": "2031 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 125, | |
"b": 123 | |
}, | |
"positionInBook": 371 | |
}, | |
{ | |
"code": "2032 U", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 114, | |
"b": 113 | |
}, | |
"positionInBook": 372 | |
}, | |
{ | |
"code": "2033 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 104, | |
"b": 103 | |
}, | |
"positionInBook": 373 | |
}, | |
{ | |
"code": "2034 U", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 97, | |
"b": 98 | |
}, | |
"positionInBook": 374 | |
}, | |
{ | |
"code": "2035 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 67, | |
"b": 67 | |
}, | |
"positionInBook": 375 | |
}, | |
{ | |
"code": "2344 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 133, | |
"b": 118 | |
}, | |
"positionInBook": 376 | |
}, | |
{ | |
"code": "2345 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 124, | |
"b": 118 | |
}, | |
"positionInBook": 377 | |
}, | |
{ | |
"code": "2346 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 111, | |
"b": 120 | |
}, | |
"positionInBook": 378 | |
}, | |
{ | |
"code": "2347 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 69, | |
"b": 54 | |
}, | |
"positionInBook": 379 | |
}, | |
{ | |
"code": "2348 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 98, | |
"b": 94 | |
}, | |
"positionInBook": 380 | |
}, | |
{ | |
"code": "2349 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 78, | |
"b": 55 | |
}, | |
"positionInBook": 381 | |
}, | |
{ | |
"code": "2350 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 72, | |
"b": 63 | |
}, | |
"positionInBook": 382 | |
}, | |
{ | |
"code": "176 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 177, | |
"b": 186 | |
}, | |
"positionInBook": 383 | |
}, | |
{ | |
"code": "177 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 140, | |
"b": 145 | |
}, | |
"positionInBook": 384 | |
}, | |
{ | |
"code": "178 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 118, | |
"b": 119 | |
}, | |
"positionInBook": 385 | |
}, | |
{ | |
"code": "Warm Red U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 102, | |
"b": 94 | |
}, | |
"positionInBook": 386 | |
}, | |
{ | |
"code": "179 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 95, | |
"b": 85 | |
}, | |
"positionInBook": 387 | |
}, | |
{ | |
"code": "180 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 96, | |
"b": 89 | |
}, | |
"positionInBook": 388 | |
}, | |
{ | |
"code": "181 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 89, | |
"b": 82 | |
}, | |
"positionInBook": 389 | |
}, | |
{ | |
"code": "1765 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 167, | |
"b": 182 | |
}, | |
"positionInBook": 390 | |
}, | |
{ | |
"code": "1775 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 139, | |
"b": 154 | |
}, | |
"positionInBook": 391 | |
}, | |
{ | |
"code": "1785 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 102, | |
"b": 114 | |
}, | |
"positionInBook": 392 | |
}, | |
{ | |
"code": "1788 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 94, | |
"b": 98 | |
}, | |
"positionInBook": 393 | |
}, | |
{ | |
"code": "1795 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 89, | |
"b": 89 | |
}, | |
"positionInBook": 394 | |
}, | |
{ | |
"code": "1805 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 88, | |
"b": 88 | |
}, | |
"positionInBook": 395 | |
}, | |
{ | |
"code": "1815 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 86, | |
"b": 82 | |
}, | |
"positionInBook": 396 | |
}, | |
{ | |
"code": "1767 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 186, | |
"b": 201 | |
}, | |
"positionInBook": 397 | |
}, | |
{ | |
"code": "1777 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 128, | |
"b": 145 | |
}, | |
"positionInBook": 398 | |
}, | |
{ | |
"code": "1787 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 99, | |
"b": 113 | |
}, | |
"positionInBook": 399 | |
}, | |
{ | |
"code": "Red 032 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 80, | |
"b": 88 | |
}, | |
"positionInBook": 400 | |
}, | |
{ | |
"code": "1797 U", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 79, | |
"b": 83 | |
}, | |
"positionInBook": 401 | |
}, | |
{ | |
"code": "1807 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 81, | |
"b": 84 | |
}, | |
"positionInBook": 402 | |
}, | |
{ | |
"code": "1817 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 84, | |
"b": 83 | |
}, | |
"positionInBook": 403 | |
}, | |
{ | |
"code": "7618 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 138, | |
"b": 119 | |
}, | |
"positionInBook": 404 | |
}, | |
{ | |
"code": "7619 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 113, | |
"b": 100 | |
}, | |
"positionInBook": 405 | |
}, | |
{ | |
"code": "7620 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 97, | |
"b": 91 | |
}, | |
"positionInBook": 406 | |
}, | |
{ | |
"code": "7621 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 93, | |
"b": 90 | |
}, | |
"positionInBook": 407 | |
}, | |
{ | |
"code": "7622 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 93, | |
"b": 92 | |
}, | |
"positionInBook": 408 | |
}, | |
{ | |
"code": "7623 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 92, | |
"b": 87 | |
}, | |
"positionInBook": 409 | |
}, | |
{ | |
"code": "7624 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 90, | |
"b": 84 | |
}, | |
"positionInBook": 410 | |
}, | |
{ | |
"code": "7625 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 119, | |
"b": 108 | |
}, | |
"positionInBook": 411 | |
}, | |
{ | |
"code": "7626 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 98, | |
"b": 95 | |
}, | |
"positionInBook": 412 | |
}, | |
{ | |
"code": "7627 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 88, | |
"b": 87 | |
}, | |
"positionInBook": 413 | |
}, | |
{ | |
"code": "7628 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 89, | |
"b": 89 | |
}, | |
"positionInBook": 414 | |
}, | |
{ | |
"code": "7629 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 91, | |
"b": 90 | |
}, | |
"positionInBook": 415 | |
}, | |
{ | |
"code": "7630 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 89, | |
"b": 87 | |
}, | |
"positionInBook": 416 | |
}, | |
{ | |
"code": "7631 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 85, | |
"b": 85 | |
}, | |
"positionInBook": 417 | |
}, | |
{ | |
"code": "7415 U", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 181, | |
"b": 165 | |
}, | |
"positionInBook": 418 | |
}, | |
{ | |
"code": "7416 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 116, | |
"b": 106 | |
}, | |
"positionInBook": 419 | |
}, | |
{ | |
"code": "7417 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 107, | |
"b": 97 | |
}, | |
"positionInBook": 420 | |
}, | |
{ | |
"code": "7418 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 99, | |
"b": 102 | |
}, | |
"positionInBook": 421 | |
}, | |
{ | |
"code": "7419 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 98, | |
"b": 107 | |
}, | |
"positionInBook": 422 | |
}, | |
{ | |
"code": "7420 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 87, | |
"b": 104 | |
}, | |
"positionInBook": 423 | |
}, | |
{ | |
"code": "7421 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 78, | |
"b": 91 | |
}, | |
"positionInBook": 424 | |
}, | |
{ | |
"code": "182 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 184, | |
"b": 202 | |
}, | |
"positionInBook": 425 | |
}, | |
{ | |
"code": "183 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 141, | |
"b": 163 | |
}, | |
"positionInBook": 426 | |
}, | |
{ | |
"code": "184 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 110, | |
"b": 131 | |
}, | |
"positionInBook": 427 | |
}, | |
{ | |
"code": "185 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 80, | |
"b": 96 | |
}, | |
"positionInBook": 428 | |
}, | |
{ | |
"code": "186 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 81, | |
"b": 94 | |
}, | |
"positionInBook": 429 | |
}, | |
{ | |
"code": "187 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 83, | |
"b": 92 | |
}, | |
"positionInBook": 430 | |
}, | |
{ | |
"code": "188 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 85, | |
"b": 89 | |
}, | |
"positionInBook": 431 | |
}, | |
{ | |
"code": "196 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 195, | |
"b": 203 | |
}, | |
"positionInBook": 432 | |
}, | |
{ | |
"code": "197 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 161, | |
"b": 178 | |
}, | |
"positionInBook": 433 | |
}, | |
{ | |
"code": "198 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 107, | |
"b": 124 | |
}, | |
"positionInBook": 434 | |
}, | |
{ | |
"code": "199 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 80, | |
"b": 97 | |
}, | |
"positionInBook": 435 | |
}, | |
{ | |
"code": "200 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 79, | |
"b": 92 | |
}, | |
"positionInBook": 436 | |
}, | |
{ | |
"code": "201 U", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 87, | |
"b": 96 | |
}, | |
"positionInBook": 437 | |
}, | |
{ | |
"code": "202 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 88, | |
"b": 94 | |
}, | |
"positionInBook": 438 | |
}, | |
{ | |
"code": "189 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 171, | |
"b": 194 | |
}, | |
"positionInBook": 439 | |
}, | |
{ | |
"code": "190 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 135, | |
"b": 163 | |
}, | |
"positionInBook": 440 | |
}, | |
{ | |
"code": "191 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 112, | |
"b": 137 | |
}, | |
"positionInBook": 441 | |
}, | |
{ | |
"code": "192 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 83, | |
"b": 107 | |
}, | |
"positionInBook": 442 | |
}, | |
{ | |
"code": "193 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 82, | |
"b": 100 | |
}, | |
"positionInBook": 443 | |
}, | |
{ | |
"code": "194 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 89, | |
"b": 101 | |
}, | |
"positionInBook": 444 | |
}, | |
{ | |
"code": "195 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 90, | |
"b": 97 | |
}, | |
"positionInBook": 445 | |
}, | |
{ | |
"code": "1895 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 179, | |
"b": 205 | |
}, | |
"positionInBook": 446 | |
}, | |
{ | |
"code": "1905 U", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 156, | |
"b": 186 | |
}, | |
"positionInBook": 447 | |
}, | |
{ | |
"code": "1915 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 111, | |
"b": 146 | |
}, | |
"positionInBook": 448 | |
}, | |
{ | |
"code": "1925 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 80, | |
"b": 110 | |
}, | |
"positionInBook": 449 | |
}, | |
{ | |
"code": "1935 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 76, | |
"b": 99 | |
}, | |
"positionInBook": 450 | |
}, | |
{ | |
"code": "1945 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 84, | |
"b": 104 | |
}, | |
"positionInBook": 451 | |
}, | |
{ | |
"code": "1955 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 83, | |
"b": 97 | |
}, | |
"positionInBook": 452 | |
}, | |
{ | |
"code": "705 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 221, | |
"b": 226 | |
}, | |
"positionInBook": 453 | |
}, | |
{ | |
"code": "706 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 202, | |
"b": 212 | |
}, | |
"positionInBook": 454 | |
}, | |
{ | |
"code": "707 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 176, | |
"b": 191 | |
}, | |
"positionInBook": 455 | |
}, | |
{ | |
"code": "708 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 153, | |
"b": 168 | |
}, | |
"positionInBook": 456 | |
}, | |
{ | |
"code": "709 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 124, | |
"b": 138 | |
}, | |
"positionInBook": 457 | |
}, | |
{ | |
"code": "710 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 99, | |
"b": 111 | |
}, | |
"positionInBook": 458 | |
}, | |
{ | |
"code": "711 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 80, | |
"b": 85 | |
}, | |
"positionInBook": 459 | |
}, | |
{ | |
"code": "698 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 215, | |
"b": 218 | |
}, | |
"positionInBook": 460 | |
}, | |
{ | |
"code": "699 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 194, | |
"b": 204 | |
}, | |
"positionInBook": 461 | |
}, | |
{ | |
"code": "700 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 170, | |
"b": 182 | |
}, | |
"positionInBook": 462 | |
}, | |
{ | |
"code": "701 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 143, | |
"b": 157 | |
}, | |
"positionInBook": 463 | |
}, | |
{ | |
"code": "702 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 121, | |
"b": 135 | |
}, | |
"positionInBook": 464 | |
}, | |
{ | |
"code": "703 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 90, | |
"b": 101 | |
}, | |
"positionInBook": 465 | |
}, | |
{ | |
"code": "704 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 80, | |
"b": 86 | |
}, | |
"positionInBook": 466 | |
}, | |
{ | |
"code": "203 U", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 177, | |
"b": 204 | |
}, | |
"positionInBook": 467 | |
}, | |
{ | |
"code": "204 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 130, | |
"b": 164 | |
}, | |
"positionInBook": 468 | |
}, | |
{ | |
"code": "205 U", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 98, | |
"b": 132 | |
}, | |
"positionInBook": 469 | |
}, | |
{ | |
"code": "206 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 68, | |
"b": 101 | |
}, | |
"positionInBook": 470 | |
}, | |
{ | |
"code": "207 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 77, | |
"b": 100 | |
}, | |
"positionInBook": 471 | |
}, | |
{ | |
"code": "208 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 85, | |
"b": 103 | |
}, | |
"positionInBook": 472 | |
}, | |
{ | |
"code": "209 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 88, | |
"b": 100 | |
}, | |
"positionInBook": 473 | |
}, | |
{ | |
"code": "210 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 162, | |
"b": 203 | |
}, | |
"positionInBook": 474 | |
}, | |
{ | |
"code": "211 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 133, | |
"b": 182 | |
}, | |
"positionInBook": 475 | |
}, | |
{ | |
"code": "212 U", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 109, | |
"b": 158 | |
}, | |
"positionInBook": 476 | |
}, | |
{ | |
"code": "213 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 84, | |
"b": 133 | |
}, | |
"positionInBook": 477 | |
}, | |
{ | |
"code": "214 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 81, | |
"b": 122 | |
}, | |
"positionInBook": 478 | |
}, | |
{ | |
"code": "215 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 81, | |
"b": 113 | |
}, | |
"positionInBook": 479 | |
}, | |
{ | |
"code": "216 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 84, | |
"b": 102 | |
}, | |
"positionInBook": 480 | |
}, | |
{ | |
"code": "2036 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 196, | |
"b": 220 | |
}, | |
"positionInBook": 481 | |
}, | |
{ | |
"code": "2037 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 155, | |
"b": 203 | |
}, | |
"positionInBook": 482 | |
}, | |
{ | |
"code": "2038 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 114, | |
"b": 166 | |
}, | |
"positionInBook": 483 | |
}, | |
{ | |
"code": "2039 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 92, | |
"b": 144 | |
}, | |
"positionInBook": 484 | |
}, | |
{ | |
"code": "2040 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 66, | |
"b": 106 | |
}, | |
"positionInBook": 485 | |
}, | |
{ | |
"code": "2041 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 79, | |
"b": 101 | |
}, | |
"positionInBook": 486 | |
}, | |
{ | |
"code": "2042 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 78, | |
"b": 88 | |
}, | |
"positionInBook": 487 | |
}, | |
{ | |
"code": "7422 U", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 212, | |
"b": 218 | |
}, | |
"positionInBook": 488 | |
}, | |
{ | |
"code": "7423 U", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 117, | |
"b": 143 | |
}, | |
"positionInBook": 489 | |
}, | |
{ | |
"code": "7424 U", | |
"name": null, | |
"rgb": { | |
"r": 217, | |
"g": 87, | |
"b": 125 | |
}, | |
"positionInBook": 490 | |
}, | |
{ | |
"code": "7425 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 90, | |
"b": 115 | |
}, | |
"positionInBook": 491 | |
}, | |
{ | |
"code": "7426 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 85, | |
"b": 106 | |
}, | |
"positionInBook": 492 | |
}, | |
{ | |
"code": "7427 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 82, | |
"b": 92 | |
}, | |
"positionInBook": 493 | |
}, | |
{ | |
"code": "7428 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 92, | |
"b": 103 | |
}, | |
"positionInBook": 494 | |
}, | |
{ | |
"code": "7632 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 207, | |
"b": 208 | |
}, | |
"positionInBook": 495 | |
}, | |
{ | |
"code": "7633 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 170, | |
"b": 174 | |
}, | |
"positionInBook": 496 | |
}, | |
{ | |
"code": "7634 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 125, | |
"b": 146 | |
}, | |
"positionInBook": 497 | |
}, | |
{ | |
"code": "7635 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 98, | |
"b": 125 | |
}, | |
"positionInBook": 498 | |
}, | |
{ | |
"code": "7636 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 86, | |
"b": 109 | |
}, | |
"positionInBook": 499 | |
}, | |
{ | |
"code": "7637 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 88, | |
"b": 100 | |
}, | |
"positionInBook": 500 | |
}, | |
{ | |
"code": "7638 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 86, | |
"b": 96 | |
}, | |
"positionInBook": 501 | |
}, | |
{ | |
"code": "217 U", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 193, | |
"b": 225 | |
}, | |
"positionInBook": 502 | |
}, | |
{ | |
"code": "218 U", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 132, | |
"b": 185 | |
}, | |
"positionInBook": 503 | |
}, | |
{ | |
"code": "219 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 92, | |
"b": 150 | |
}, | |
"positionInBook": 504 | |
}, | |
{ | |
"code": "Rubine Red U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 72, | |
"b": 126 | |
}, | |
"positionInBook": 505 | |
}, | |
{ | |
"code": "220 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 76, | |
"b": 117 | |
}, | |
"positionInBook": 506 | |
}, | |
{ | |
"code": "221 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 76, | |
"b": 110 | |
}, | |
"positionInBook": 507 | |
}, | |
{ | |
"code": "222 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 86, | |
"b": 107 | |
}, | |
"positionInBook": 508 | |
}, | |
{ | |
"code": "7639 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 133, | |
"b": 138 | |
}, | |
"positionInBook": 509 | |
}, | |
{ | |
"code": "7640 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 102, | |
"b": 115 | |
}, | |
"positionInBook": 510 | |
}, | |
{ | |
"code": "7641 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 93, | |
"b": 109 | |
}, | |
"positionInBook": 511 | |
}, | |
{ | |
"code": "7642 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 88, | |
"b": 103 | |
}, | |
"positionInBook": 512 | |
}, | |
{ | |
"code": "7643 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 90, | |
"b": 103 | |
}, | |
"positionInBook": 513 | |
}, | |
{ | |
"code": "7644 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 88, | |
"b": 98 | |
}, | |
"positionInBook": 514 | |
}, | |
{ | |
"code": "7645 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 87, | |
"b": 96 | |
}, | |
"positionInBook": 515 | |
}, | |
{ | |
"code": "223 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 164, | |
"b": 216 | |
}, | |
"positionInBook": 516 | |
}, | |
{ | |
"code": "224 U", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 135, | |
"b": 199 | |
}, | |
"positionInBook": 517 | |
}, | |
{ | |
"code": "225 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 96, | |
"b": 167 | |
}, | |
"positionInBook": 518 | |
}, | |
{ | |
"code": "226 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 69, | |
"b": 136 | |
}, | |
"positionInBook": 519 | |
}, | |
{ | |
"code": "227 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 72, | |
"b": 121 | |
}, | |
"positionInBook": 520 | |
}, | |
{ | |
"code": "228 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 77, | |
"b": 109 | |
}, | |
"positionInBook": 521 | |
}, | |
{ | |
"code": "229 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 84, | |
"b": 102 | |
}, | |
"positionInBook": 522 | |
}, | |
{ | |
"code": "230 U", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 178, | |
"b": 224 | |
}, | |
"positionInBook": 523 | |
}, | |
{ | |
"code": "231 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 133, | |
"b": 202 | |
}, | |
"positionInBook": 524 | |
}, | |
{ | |
"code": "232 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 106, | |
"b": 183 | |
}, | |
"positionInBook": 525 | |
}, | |
{ | |
"code": "Rhodamine Red U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 76, | |
"b": 154 | |
}, | |
"positionInBook": 526 | |
}, | |
{ | |
"code": "233 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 70, | |
"b": 135 | |
}, | |
"positionInBook": 527 | |
}, | |
{ | |
"code": "234 U", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 76, | |
"b": 125 | |
}, | |
"positionInBook": 528 | |
}, | |
{ | |
"code": "235 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 78, | |
"b": 114 | |
}, | |
"positionInBook": 529 | |
}, | |
{ | |
"code": "670 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 214, | |
"b": 229 | |
}, | |
"positionInBook": 530 | |
}, | |
{ | |
"code": "671 U", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 195, | |
"b": 221 | |
}, | |
"positionInBook": 531 | |
}, | |
{ | |
"code": "672 U", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 167, | |
"b": 205 | |
}, | |
"positionInBook": 532 | |
}, | |
{ | |
"code": "673 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 140, | |
"b": 186 | |
}, | |
"positionInBook": 533 | |
}, | |
{ | |
"code": "674 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 114, | |
"b": 161 | |
}, | |
"positionInBook": 534 | |
}, | |
{ | |
"code": "675 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 97, | |
"b": 142 | |
}, | |
"positionInBook": 535 | |
}, | |
{ | |
"code": "676 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 80, | |
"b": 121 | |
}, | |
"positionInBook": 536 | |
}, | |
{ | |
"code": "2043 U", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 194, | |
"b": 210 | |
}, | |
"positionInBook": 537 | |
}, | |
{ | |
"code": "2044 U", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 147, | |
"b": 181 | |
}, | |
"positionInBook": 538 | |
}, | |
{ | |
"code": "2045 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 124, | |
"b": 160 | |
}, | |
"positionInBook": 539 | |
}, | |
{ | |
"code": "2046 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 108, | |
"b": 143 | |
}, | |
"positionInBook": 540 | |
}, | |
{ | |
"code": "2047 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 95, | |
"b": 120 | |
}, | |
"positionInBook": 541 | |
}, | |
{ | |
"code": "2048 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 90, | |
"b": 113 | |
}, | |
"positionInBook": 542 | |
}, | |
{ | |
"code": "2049 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 83, | |
"b": 101 | |
}, | |
"positionInBook": 543 | |
}, | |
{ | |
"code": "677 U", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 210, | |
"b": 224 | |
}, | |
"positionInBook": 544 | |
}, | |
{ | |
"code": "678 U", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 192, | |
"b": 212 | |
}, | |
"positionInBook": 545 | |
}, | |
{ | |
"code": "679 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 172, | |
"b": 198 | |
}, | |
"positionInBook": 546 | |
}, | |
{ | |
"code": "680 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 139, | |
"b": 169 | |
}, | |
"positionInBook": 547 | |
}, | |
{ | |
"code": "681 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 112, | |
"b": 141 | |
}, | |
"positionInBook": 548 | |
}, | |
{ | |
"code": "682 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 93, | |
"b": 120 | |
}, | |
"positionInBook": 549 | |
}, | |
{ | |
"code": "683 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 82, | |
"b": 104 | |
}, | |
"positionInBook": 550 | |
}, | |
{ | |
"code": "2050 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 221, | |
"b": 234 | |
}, | |
"positionInBook": 551 | |
}, | |
{ | |
"code": "2051 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 200, | |
"b": 213 | |
}, | |
"positionInBook": 552 | |
}, | |
{ | |
"code": "2052 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 165, | |
"b": 187 | |
}, | |
"positionInBook": 553 | |
}, | |
{ | |
"code": "2053 U", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 140, | |
"b": 164 | |
}, | |
"positionInBook": 554 | |
}, | |
{ | |
"code": "2054 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 126, | |
"b": 148 | |
}, | |
"positionInBook": 555 | |
}, | |
{ | |
"code": "2055 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 115, | |
"b": 135 | |
}, | |
"positionInBook": 556 | |
}, | |
{ | |
"code": "2056 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 103, | |
"b": 122 | |
}, | |
"positionInBook": 557 | |
}, | |
{ | |
"code": "684 U", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 203, | |
"b": 217 | |
}, | |
"positionInBook": 558 | |
}, | |
{ | |
"code": "685 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 189, | |
"b": 208 | |
}, | |
"positionInBook": 559 | |
}, | |
{ | |
"code": "686 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 166, | |
"b": 190 | |
}, | |
"positionInBook": 560 | |
}, | |
{ | |
"code": "687 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 140, | |
"b": 166 | |
}, | |
"positionInBook": 561 | |
}, | |
{ | |
"code": "688 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 115, | |
"b": 140 | |
}, | |
"positionInBook": 562 | |
}, | |
{ | |
"code": "689 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 97, | |
"b": 120 | |
}, | |
"positionInBook": 563 | |
}, | |
{ | |
"code": "690 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 80, | |
"b": 96 | |
}, | |
"positionInBook": 564 | |
}, | |
{ | |
"code": "510 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 191, | |
"b": 203 | |
}, | |
"positionInBook": 565 | |
}, | |
{ | |
"code": "509 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 174, | |
"b": 190 | |
}, | |
"positionInBook": 566 | |
}, | |
{ | |
"code": "508 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 156, | |
"b": 174 | |
}, | |
"positionInBook": 567 | |
}, | |
{ | |
"code": "507 U", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 143, | |
"b": 164 | |
}, | |
"positionInBook": 568 | |
}, | |
{ | |
"code": "506 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 99, | |
"b": 114 | |
}, | |
"positionInBook": 569 | |
}, | |
{ | |
"code": "505 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 92, | |
"b": 102 | |
}, | |
"positionInBook": 570 | |
}, | |
{ | |
"code": "504 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 93, | |
"b": 98 | |
}, | |
"positionInBook": 571 | |
}, | |
{ | |
"code": "7429 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 204, | |
"b": 217 | |
}, | |
"positionInBook": 572 | |
}, | |
{ | |
"code": "7430 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 181, | |
"b": 201 | |
}, | |
"positionInBook": 573 | |
}, | |
{ | |
"code": "7431 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 162, | |
"b": 185 | |
}, | |
"positionInBook": 574 | |
}, | |
{ | |
"code": "7432 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 129, | |
"b": 154 | |
}, | |
"positionInBook": 575 | |
}, | |
{ | |
"code": "7433 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 111, | |
"b": 137 | |
}, | |
"positionInBook": 576 | |
}, | |
{ | |
"code": "7434 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 103, | |
"b": 125 | |
}, | |
"positionInBook": 577 | |
}, | |
{ | |
"code": "7435 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 86, | |
"b": 107 | |
}, | |
"positionInBook": 578 | |
}, | |
{ | |
"code": "691 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 211, | |
"b": 213 | |
}, | |
"positionInBook": 579 | |
}, | |
{ | |
"code": "692 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 192, | |
"b": 197 | |
}, | |
"positionInBook": 580 | |
}, | |
{ | |
"code": "693 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 165, | |
"b": 173 | |
}, | |
"positionInBook": 581 | |
}, | |
{ | |
"code": "694 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 141, | |
"b": 150 | |
}, | |
"positionInBook": 582 | |
}, | |
{ | |
"code": "695 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 118, | |
"b": 128 | |
}, | |
"positionInBook": 583 | |
}, | |
{ | |
"code": "696 U", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 101, | |
"b": 108 | |
}, | |
"positionInBook": 584 | |
}, | |
{ | |
"code": "697 U", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 86, | |
"b": 91 | |
}, | |
"positionInBook": 585 | |
}, | |
{ | |
"code": "496 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 194, | |
"b": 204 | |
}, | |
"positionInBook": 586 | |
}, | |
{ | |
"code": "495 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 175, | |
"b": 188 | |
}, | |
"positionInBook": 587 | |
}, | |
{ | |
"code": "494 U", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 155, | |
"b": 168 | |
}, | |
"positionInBook": 588 | |
}, | |
{ | |
"code": "493 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 124, | |
"b": 137 | |
}, | |
"positionInBook": 589 | |
}, | |
{ | |
"code": "492 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 93, | |
"b": 96 | |
}, | |
"positionInBook": 590 | |
}, | |
{ | |
"code": "491 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 89, | |
"b": 90 | |
}, | |
"positionInBook": 591 | |
}, | |
{ | |
"code": "490 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 85, | |
"b": 84 | |
}, | |
"positionInBook": 592 | |
}, | |
{ | |
"code": "503 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 205, | |
"b": 207 | |
}, | |
"positionInBook": 593 | |
}, | |
{ | |
"code": "502 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 183, | |
"b": 189 | |
}, | |
"positionInBook": 594 | |
}, | |
{ | |
"code": "501 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 165, | |
"b": 172 | |
}, | |
"positionInBook": 595 | |
}, | |
{ | |
"code": "500 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 137, | |
"b": 143 | |
}, | |
"positionInBook": 596 | |
}, | |
{ | |
"code": "499 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 97, | |
"b": 95 | |
}, | |
"positionInBook": 597 | |
}, | |
{ | |
"code": "498 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 93, | |
"b": 91 | |
}, | |
"positionInBook": 598 | |
}, | |
{ | |
"code": "497 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 89, | |
"b": 86 | |
}, | |
"positionInBook": 599 | |
}, | |
{ | |
"code": "5035 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 198, | |
"b": 199 | |
}, | |
"positionInBook": 600 | |
}, | |
{ | |
"code": "5025 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 182, | |
"b": 186 | |
}, | |
"positionInBook": 601 | |
}, | |
{ | |
"code": "5015 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 161, | |
"b": 166 | |
}, | |
"positionInBook": 602 | |
}, | |
{ | |
"code": "5005 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 138, | |
"b": 144 | |
}, | |
"positionInBook": 603 | |
}, | |
{ | |
"code": "4995 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 120, | |
"b": 127 | |
}, | |
"positionInBook": 604 | |
}, | |
{ | |
"code": "4985 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 106, | |
"b": 111 | |
}, | |
"positionInBook": 605 | |
}, | |
{ | |
"code": "4975 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 86, | |
"b": 84 | |
}, | |
"positionInBook": 606 | |
}, | |
{ | |
"code": "236 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 166, | |
"b": 222 | |
}, | |
"positionInBook": 607 | |
}, | |
{ | |
"code": "237 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 141, | |
"b": 210 | |
}, | |
"positionInBook": 608 | |
}, | |
{ | |
"code": "238 U", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 113, | |
"b": 192 | |
}, | |
"positionInBook": 609 | |
}, | |
{ | |
"code": "239 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 85, | |
"b": 170 | |
}, | |
"positionInBook": 610 | |
}, | |
{ | |
"code": "240 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 85, | |
"b": 152 | |
}, | |
"positionInBook": 611 | |
}, | |
{ | |
"code": "241 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 84, | |
"b": 139 | |
}, | |
"positionInBook": 612 | |
}, | |
{ | |
"code": "242 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 89, | |
"b": 119 | |
}, | |
"positionInBook": 613 | |
}, | |
{ | |
"code": "2057 U", | |
"name": null, | |
"rgb": { | |
"r": 217, | |
"g": 159, | |
"b": 191 | |
}, | |
"positionInBook": 614 | |
}, | |
{ | |
"code": "2058 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 133, | |
"b": 166 | |
}, | |
"positionInBook": 615 | |
}, | |
{ | |
"code": "2059 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 133, | |
"b": 163 | |
}, | |
"positionInBook": 616 | |
}, | |
{ | |
"code": "2060 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 122, | |
"b": 171 | |
}, | |
"positionInBook": 617 | |
}, | |
{ | |
"code": "2061 U", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 112, | |
"b": 147 | |
}, | |
"positionInBook": 618 | |
}, | |
{ | |
"code": "2062 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 95, | |
"b": 143 | |
}, | |
"positionInBook": 619 | |
}, | |
{ | |
"code": "2063 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 83, | |
"b": 128 | |
}, | |
"positionInBook": 620 | |
}, | |
{ | |
"code": "2365 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 191, | |
"b": 231 | |
}, | |
"positionInBook": 621 | |
}, | |
{ | |
"code": "2375 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 136, | |
"b": 210 | |
}, | |
"positionInBook": 622 | |
}, | |
{ | |
"code": "2385 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 112, | |
"b": 194 | |
}, | |
"positionInBook": 623 | |
}, | |
{ | |
"code": "2395 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 87, | |
"b": 175 | |
}, | |
"positionInBook": 624 | |
}, | |
{ | |
"code": "2405 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 86, | |
"b": 157 | |
}, | |
"positionInBook": 625 | |
}, | |
{ | |
"code": "2415 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 84, | |
"b": 145 | |
}, | |
"positionInBook": 626 | |
}, | |
{ | |
"code": "2425 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 83, | |
"b": 129 | |
}, | |
"positionInBook": 627 | |
}, | |
{ | |
"code": "243 U", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 178, | |
"b": 230 | |
}, | |
"positionInBook": 628 | |
}, | |
{ | |
"code": "244 U", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 154, | |
"b": 222 | |
}, | |
"positionInBook": 629 | |
}, | |
{ | |
"code": "245 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 127, | |
"b": 208 | |
}, | |
"positionInBook": 630 | |
}, | |
{ | |
"code": "246 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 87, | |
"b": 179 | |
}, | |
"positionInBook": 631 | |
}, | |
{ | |
"code": "247 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 81, | |
"b": 162 | |
}, | |
"positionInBook": 632 | |
}, | |
{ | |
"code": "248 U", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 79, | |
"b": 140 | |
}, | |
"positionInBook": 633 | |
}, | |
{ | |
"code": "249 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 87, | |
"b": 121 | |
}, | |
"positionInBook": 634 | |
}, | |
{ | |
"code": "7646 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 135, | |
"b": 153 | |
}, | |
"positionInBook": 635 | |
}, | |
{ | |
"code": "7647 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 104, | |
"b": 137 | |
}, | |
"positionInBook": 636 | |
}, | |
{ | |
"code": "7648 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 83, | |
"b": 123 | |
}, | |
"positionInBook": 637 | |
}, | |
{ | |
"code": "7649 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 83, | |
"b": 121 | |
}, | |
"positionInBook": 638 | |
}, | |
{ | |
"code": "7650 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 85, | |
"b": 115 | |
}, | |
"positionInBook": 639 | |
}, | |
{ | |
"code": "7651 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 92, | |
"b": 120 | |
}, | |
"positionInBook": 640 | |
}, | |
{ | |
"code": "7652 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 85, | |
"b": 108 | |
}, | |
"positionInBook": 641 | |
}, | |
{ | |
"code": "250 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 186, | |
"b": 233 | |
}, | |
"positionInBook": 642 | |
}, | |
{ | |
"code": "251 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 150, | |
"b": 223 | |
}, | |
"positionInBook": 643 | |
}, | |
{ | |
"code": "252 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 112, | |
"b": 204 | |
}, | |
"positionInBook": 644 | |
}, | |
{ | |
"code": "Purple U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 83, | |
"b": 182 | |
}, | |
"positionInBook": 645 | |
}, | |
{ | |
"code": "253 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 86, | |
"b": 174 | |
}, | |
"positionInBook": 646 | |
}, | |
{ | |
"code": "254 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 84, | |
"b": 154 | |
}, | |
"positionInBook": 647 | |
}, | |
{ | |
"code": "255 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 87, | |
"b": 125 | |
}, | |
"positionInBook": 648 | |
}, | |
{ | |
"code": "2064 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 149, | |
"b": 204 | |
}, | |
"positionInBook": 649 | |
}, | |
{ | |
"code": "2065 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 160, | |
"b": 219 | |
}, | |
"positionInBook": 650 | |
}, | |
{ | |
"code": "2066 U", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 141, | |
"b": 210 | |
}, | |
"positionInBook": 651 | |
}, | |
{ | |
"code": "2067 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 116, | |
"b": 192 | |
}, | |
"positionInBook": 652 | |
}, | |
{ | |
"code": "2068 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 102, | |
"b": 179 | |
}, | |
"positionInBook": 653 | |
}, | |
{ | |
"code": "2069 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 91, | |
"b": 168 | |
}, | |
"positionInBook": 654 | |
}, | |
{ | |
"code": "2070 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 75, | |
"b": 150 | |
}, | |
"positionInBook": 655 | |
}, | |
{ | |
"code": "517 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 200, | |
"b": 227 | |
}, | |
"positionInBook": 656 | |
}, | |
{ | |
"code": "516 U", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 182, | |
"b": 220 | |
}, | |
"positionInBook": 657 | |
}, | |
{ | |
"code": "515 U", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 165, | |
"b": 212 | |
}, | |
"positionInBook": 658 | |
}, | |
{ | |
"code": "514 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 137, | |
"b": 195 | |
}, | |
"positionInBook": 659 | |
}, | |
{ | |
"code": "513 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 95, | |
"b": 152 | |
}, | |
"positionInBook": 660 | |
}, | |
{ | |
"code": "512 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 88, | |
"b": 127 | |
}, | |
"positionInBook": 661 | |
}, | |
{ | |
"code": "511 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 85, | |
"b": 104 | |
}, | |
"positionInBook": 662 | |
}, | |
{ | |
"code": "2351 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 130, | |
"b": 179 | |
}, | |
"positionInBook": 663 | |
}, | |
{ | |
"code": "2352 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 114, | |
"b": 165 | |
}, | |
"positionInBook": 664 | |
}, | |
{ | |
"code": "2353 U", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 91, | |
"b": 153 | |
}, | |
"positionInBook": 665 | |
}, | |
{ | |
"code": "2354 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 100, | |
"b": 140 | |
}, | |
"positionInBook": 666 | |
}, | |
{ | |
"code": "2355 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 71, | |
"b": 124 | |
}, | |
"positionInBook": 667 | |
}, | |
{ | |
"code": "2356 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 64, | |
"b": 112 | |
}, | |
"positionInBook": 668 | |
}, | |
{ | |
"code": "2357 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 68, | |
"b": 90 | |
}, | |
"positionInBook": 669 | |
}, | |
{ | |
"code": "7653 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 149, | |
"b": 160 | |
}, | |
"positionInBook": 670 | |
}, | |
{ | |
"code": "7654 U", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 138, | |
"b": 165 | |
}, | |
"positionInBook": 671 | |
}, | |
{ | |
"code": "7655 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 120, | |
"b": 160 | |
}, | |
"positionInBook": 672 | |
}, | |
{ | |
"code": "7656 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 100, | |
"b": 141 | |
}, | |
"positionInBook": 673 | |
}, | |
{ | |
"code": "7657 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 89, | |
"b": 120 | |
}, | |
"positionInBook": 674 | |
}, | |
{ | |
"code": "7658 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 94, | |
"b": 119 | |
}, | |
"positionInBook": 675 | |
}, | |
{ | |
"code": "7659 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 90, | |
"b": 107 | |
}, | |
"positionInBook": 676 | |
}, | |
{ | |
"code": "5175 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 197, | |
"b": 208 | |
}, | |
"positionInBook": 677 | |
}, | |
{ | |
"code": "5165 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 180, | |
"b": 196 | |
}, | |
"positionInBook": 678 | |
}, | |
{ | |
"code": "5155 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 158, | |
"b": 178 | |
}, | |
"positionInBook": 679 | |
}, | |
{ | |
"code": "5145 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 137, | |
"b": 159 | |
}, | |
"positionInBook": 680 | |
}, | |
{ | |
"code": "5135 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 114, | |
"b": 135 | |
}, | |
"positionInBook": 681 | |
}, | |
{ | |
"code": "5125 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 99, | |
"b": 120 | |
}, | |
"positionInBook": 682 | |
}, | |
{ | |
"code": "5115 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 85, | |
"b": 100 | |
}, | |
"positionInBook": 683 | |
}, | |
{ | |
"code": "5245 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 207, | |
"b": 214 | |
}, | |
"positionInBook": 684 | |
}, | |
{ | |
"code": "5235 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 195, | |
"b": 204 | |
}, | |
"positionInBook": 685 | |
}, | |
{ | |
"code": "5225 U", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 172, | |
"b": 185 | |
}, | |
"positionInBook": 686 | |
}, | |
{ | |
"code": "5215 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 140, | |
"b": 156 | |
}, | |
"positionInBook": 687 | |
}, | |
{ | |
"code": "5205 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 123, | |
"b": 138 | |
}, | |
"positionInBook": 688 | |
}, | |
{ | |
"code": "5195 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 108, | |
"b": 120 | |
}, | |
"positionInBook": 689 | |
}, | |
{ | |
"code": "5185 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 96, | |
"b": 105 | |
}, | |
"positionInBook": 690 | |
}, | |
{ | |
"code": "524 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 197, | |
"b": 220 | |
}, | |
"positionInBook": 691 | |
}, | |
{ | |
"code": "523 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 183, | |
"b": 213 | |
}, | |
"positionInBook": 692 | |
}, | |
{ | |
"code": "522 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 159, | |
"b": 198 | |
}, | |
"positionInBook": 693 | |
}, | |
{ | |
"code": "521 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 139, | |
"b": 181 | |
}, | |
"positionInBook": 694 | |
}, | |
{ | |
"code": "520 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 95, | |
"b": 135 | |
}, | |
"positionInBook": 695 | |
}, | |
{ | |
"code": "519 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 93, | |
"b": 122 | |
}, | |
"positionInBook": 696 | |
}, | |
{ | |
"code": "518 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 89, | |
"b": 105 | |
}, | |
"positionInBook": 697 | |
}, | |
{ | |
"code": "7436 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 213, | |
"b": 237 | |
}, | |
"positionInBook": 698 | |
}, | |
{ | |
"code": "7437 U", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 182, | |
"b": 214 | |
}, | |
"positionInBook": 699 | |
}, | |
{ | |
"code": "7438 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 155, | |
"b": 215 | |
}, | |
"positionInBook": 700 | |
}, | |
{ | |
"code": "7439 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 156, | |
"b": 198 | |
}, | |
"positionInBook": 701 | |
}, | |
{ | |
"code": "7440 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 150, | |
"b": 186 | |
}, | |
"positionInBook": 702 | |
}, | |
{ | |
"code": "7441 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 126, | |
"b": 202 | |
}, | |
"positionInBook": 703 | |
}, | |
{ | |
"code": "7442 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 98, | |
"b": 190 | |
}, | |
"positionInBook": 704 | |
}, | |
{ | |
"code": "2562 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 174, | |
"b": 233 | |
}, | |
"positionInBook": 705 | |
}, | |
{ | |
"code": "2572 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 144, | |
"b": 222 | |
}, | |
"positionInBook": 706 | |
}, | |
{ | |
"code": "2582 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 118, | |
"b": 207 | |
}, | |
"positionInBook": 707 | |
}, | |
{ | |
"code": "2592 U", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 96, | |
"b": 191 | |
}, | |
"positionInBook": 708 | |
}, | |
{ | |
"code": "2602 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 87, | |
"b": 166 | |
}, | |
"positionInBook": 709 | |
}, | |
{ | |
"code": "2612 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 87, | |
"b": 141 | |
}, | |
"positionInBook": 710 | |
}, | |
{ | |
"code": "2622 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 91, | |
"b": 122 | |
}, | |
"positionInBook": 711 | |
}, | |
{ | |
"code": "531 U", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 199, | |
"b": 235 | |
}, | |
"positionInBook": 712 | |
}, | |
{ | |
"code": "530 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 185, | |
"b": 231 | |
}, | |
"positionInBook": 713 | |
}, | |
{ | |
"code": "529 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 165, | |
"b": 225 | |
}, | |
"positionInBook": 714 | |
}, | |
{ | |
"code": "528 U", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 137, | |
"b": 210 | |
}, | |
"positionInBook": 715 | |
}, | |
{ | |
"code": "527 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 97, | |
"b": 176 | |
}, | |
"positionInBook": 716 | |
}, | |
{ | |
"code": "526 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 87, | |
"b": 145 | |
}, | |
"positionInBook": 717 | |
}, | |
{ | |
"code": "525 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 87, | |
"b": 117 | |
}, | |
"positionInBook": 718 | |
}, | |
{ | |
"code": "256 U", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 180, | |
"b": 218 | |
}, | |
"positionInBook": 719 | |
}, | |
{ | |
"code": "257 U", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 155, | |
"b": 203 | |
}, | |
"positionInBook": 720 | |
}, | |
{ | |
"code": "258 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 118, | |
"b": 174 | |
}, | |
"positionInBook": 721 | |
}, | |
{ | |
"code": "259 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 103, | |
"b": 156 | |
}, | |
"positionInBook": 722 | |
}, | |
{ | |
"code": "260 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 101, | |
"b": 141 | |
}, | |
"positionInBook": 723 | |
}, | |
{ | |
"code": "261 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 98, | |
"b": 130 | |
}, | |
"positionInBook": 724 | |
}, | |
{ | |
"code": "262 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 94, | |
"b": 116 | |
}, | |
"positionInBook": 725 | |
}, | |
{ | |
"code": "2563 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 162, | |
"b": 217 | |
}, | |
"positionInBook": 726 | |
}, | |
{ | |
"code": "2573 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 137, | |
"b": 203 | |
}, | |
"positionInBook": 727 | |
}, | |
{ | |
"code": "2583 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 114, | |
"b": 181 | |
}, | |
"positionInBook": 728 | |
}, | |
{ | |
"code": "2593 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 93, | |
"b": 160 | |
}, | |
"positionInBook": 729 | |
}, | |
{ | |
"code": "2603 U", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 89, | |
"b": 145 | |
}, | |
"positionInBook": 730 | |
}, | |
{ | |
"code": "2613 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 87, | |
"b": 135 | |
}, | |
"positionInBook": 731 | |
}, | |
{ | |
"code": "2623 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 85, | |
"b": 122 | |
}, | |
"positionInBook": 732 | |
}, | |
{ | |
"code": "2078 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 166, | |
"b": 194 | |
}, | |
"positionInBook": 733 | |
}, | |
{ | |
"code": "2079 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 140, | |
"b": 171 | |
}, | |
"positionInBook": 734 | |
}, | |
{ | |
"code": "2080 U", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 124, | |
"b": 170 | |
}, | |
"positionInBook": 735 | |
}, | |
{ | |
"code": "2081 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 112, | |
"b": 158 | |
}, | |
"positionInBook": 736 | |
}, | |
{ | |
"code": "2082 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 105, | |
"b": 149 | |
}, | |
"positionInBook": 737 | |
}, | |
{ | |
"code": "2083 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 113, | |
"b": 201 | |
}, | |
"positionInBook": 738 | |
}, | |
{ | |
"code": "2084 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 93, | |
"b": 181 | |
}, | |
"positionInBook": 739 | |
}, | |
{ | |
"code": "2071 U", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 180, | |
"b": 226 | |
}, | |
"positionInBook": 740 | |
}, | |
{ | |
"code": "2072 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 153, | |
"b": 214 | |
}, | |
"positionInBook": 741 | |
}, | |
{ | |
"code": "2073 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 150, | |
"b": 212 | |
}, | |
"positionInBook": 742 | |
}, | |
{ | |
"code": "2074 U", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 119, | |
"b": 190 | |
}, | |
"positionInBook": 743 | |
}, | |
{ | |
"code": "2075 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 117, | |
"b": 189 | |
}, | |
"positionInBook": 744 | |
}, | |
{ | |
"code": "2076 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 109, | |
"b": 180 | |
}, | |
"positionInBook": 745 | |
}, | |
{ | |
"code": "2077 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 87, | |
"b": 157 | |
}, | |
"positionInBook": 746 | |
}, | |
{ | |
"code": "7660 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 151, | |
"b": 167 | |
}, | |
"positionInBook": 747 | |
}, | |
{ | |
"code": "7661 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 127, | |
"b": 157 | |
}, | |
"positionInBook": 748 | |
}, | |
{ | |
"code": "7662 U", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 102, | |
"b": 140 | |
}, | |
"positionInBook": 749 | |
}, | |
{ | |
"code": "7663 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 92, | |
"b": 131 | |
}, | |
"positionInBook": 750 | |
}, | |
{ | |
"code": "7664 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 93, | |
"b": 132 | |
}, | |
"positionInBook": 751 | |
}, | |
{ | |
"code": "7665 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 94, | |
"b": 124 | |
}, | |
"positionInBook": 752 | |
}, | |
{ | |
"code": "7666 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 106, | |
"b": 119 | |
}, | |
"positionInBook": 753 | |
}, | |
{ | |
"code": "2567 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 159, | |
"b": 219 | |
}, | |
"positionInBook": 754 | |
}, | |
{ | |
"code": "2577 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 126, | |
"b": 198 | |
}, | |
"positionInBook": 755 | |
}, | |
{ | |
"code": "2587 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 109, | |
"b": 183 | |
}, | |
"positionInBook": 756 | |
}, | |
{ | |
"code": "2597 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 90, | |
"b": 164 | |
}, | |
"positionInBook": 757 | |
}, | |
{ | |
"code": "2607 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 88, | |
"b": 150 | |
}, | |
"positionInBook": 758 | |
}, | |
{ | |
"code": "2617 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 84, | |
"b": 137 | |
}, | |
"positionInBook": 759 | |
}, | |
{ | |
"code": "2627 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 82, | |
"b": 124 | |
}, | |
"positionInBook": 760 | |
}, | |
{ | |
"code": "263 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 198, | |
"b": 234 | |
}, | |
"positionInBook": 761 | |
}, | |
{ | |
"code": "264 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 161, | |
"b": 227 | |
}, | |
"positionInBook": 762 | |
}, | |
{ | |
"code": "265 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 122, | |
"b": 210 | |
}, | |
"positionInBook": 763 | |
}, | |
{ | |
"code": "266 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 101, | |
"b": 196 | |
}, | |
"positionInBook": 764 | |
}, | |
{ | |
"code": "267 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 93, | |
"b": 174 | |
}, | |
"positionInBook": 765 | |
}, | |
{ | |
"code": "268 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 89, | |
"b": 144 | |
}, | |
"positionInBook": 766 | |
}, | |
{ | |
"code": "269 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 88, | |
"b": 127 | |
}, | |
"positionInBook": 767 | |
}, | |
{ | |
"code": "2085 U", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 212, | |
"b": 238 | |
}, | |
"positionInBook": 768 | |
}, | |
{ | |
"code": "2086 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 144, | |
"b": 205 | |
}, | |
"positionInBook": 769 | |
}, | |
{ | |
"code": "2087 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 134, | |
"b": 215 | |
}, | |
"positionInBook": 770 | |
}, | |
{ | |
"code": "2088 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 108, | |
"b": 198 | |
}, | |
"positionInBook": 771 | |
}, | |
{ | |
"code": "2089 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 97, | |
"b": 187 | |
}, | |
"positionInBook": 772 | |
}, | |
{ | |
"code": "2090 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 90, | |
"b": 179 | |
}, | |
"positionInBook": 773 | |
}, | |
{ | |
"code": "2091 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 77, | |
"b": 161 | |
}, | |
"positionInBook": 774 | |
}, | |
{ | |
"code": "2635 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 183, | |
"b": 232 | |
}, | |
"positionInBook": 775 | |
}, | |
{ | |
"code": "2645 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 163, | |
"b": 227 | |
}, | |
"positionInBook": 776 | |
}, | |
{ | |
"code": "2655 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 136, | |
"b": 217 | |
}, | |
"positionInBook": 777 | |
}, | |
{ | |
"code": "2665 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 111, | |
"b": 202 | |
}, | |
"positionInBook": 778 | |
}, | |
{ | |
"code": "Violet U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 88, | |
"b": 179 | |
}, | |
"positionInBook": 779 | |
}, | |
{ | |
"code": "2685 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 91, | |
"b": 167 | |
}, | |
"positionInBook": 780 | |
}, | |
{ | |
"code": "2695 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 93, | |
"b": 128 | |
}, | |
"positionInBook": 781 | |
}, | |
{ | |
"code": "2092 U", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 171, | |
"b": 216 | |
}, | |
"positionInBook": 782 | |
}, | |
{ | |
"code": "2093 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 153, | |
"b": 192 | |
}, | |
"positionInBook": 783 | |
}, | |
{ | |
"code": "2094 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 133, | |
"b": 174 | |
}, | |
"positionInBook": 784 | |
}, | |
{ | |
"code": "2095 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 115, | |
"b": 176 | |
}, | |
"positionInBook": 785 | |
}, | |
{ | |
"code": "2096 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 107, | |
"b": 167 | |
}, | |
"positionInBook": 786 | |
}, | |
{ | |
"code": "2097 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 94, | |
"b": 184 | |
}, | |
"positionInBook": 787 | |
}, | |
{ | |
"code": "2098 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 83, | |
"b": 170 | |
}, | |
"positionInBook": 788 | |
}, | |
{ | |
"code": "2099 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 160, | |
"b": 201 | |
}, | |
"positionInBook": 789 | |
}, | |
{ | |
"code": "2100 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 150, | |
"b": 206 | |
}, | |
"positionInBook": 790 | |
}, | |
{ | |
"code": "2101 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 125, | |
"b": 210 | |
}, | |
"positionInBook": 791 | |
}, | |
{ | |
"code": "2102 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 108, | |
"b": 175 | |
}, | |
"positionInBook": 792 | |
}, | |
{ | |
"code": "2103 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 99, | |
"b": 165 | |
}, | |
"positionInBook": 793 | |
}, | |
{ | |
"code": "2104 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 93, | |
"b": 157 | |
}, | |
"positionInBook": 794 | |
}, | |
{ | |
"code": "2105 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 80, | |
"b": 135 | |
}, | |
"positionInBook": 795 | |
}, | |
{ | |
"code": "270 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 174, | |
"b": 222 | |
}, | |
"positionInBook": 796 | |
}, | |
{ | |
"code": "271 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 155, | |
"b": 212 | |
}, | |
"positionInBook": 797 | |
}, | |
{ | |
"code": "272 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 134, | |
"b": 198 | |
}, | |
"positionInBook": 798 | |
}, | |
{ | |
"code": "273 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 93, | |
"b": 155 | |
}, | |
"positionInBook": 799 | |
}, | |
{ | |
"code": "274 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 87, | |
"b": 139 | |
}, | |
"positionInBook": 800 | |
}, | |
{ | |
"code": "275 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 86, | |
"b": 130 | |
}, | |
"positionInBook": 801 | |
}, | |
{ | |
"code": "276 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 85, | |
"b": 111 | |
}, | |
"positionInBook": 802 | |
}, | |
{ | |
"code": "2705 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 182, | |
"b": 233 | |
}, | |
"positionInBook": 803 | |
}, | |
{ | |
"code": "2715 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 152, | |
"b": 223 | |
}, | |
"positionInBook": 804 | |
}, | |
{ | |
"code": "2725 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 128, | |
"b": 212 | |
}, | |
"positionInBook": 805 | |
}, | |
{ | |
"code": "2735 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 87, | |
"b": 178 | |
}, | |
"positionInBook": 806 | |
}, | |
{ | |
"code": "2745 U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 85, | |
"b": 154 | |
}, | |
"positionInBook": 807 | |
}, | |
{ | |
"code": "2755 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 83, | |
"b": 139 | |
}, | |
"positionInBook": 808 | |
}, | |
{ | |
"code": "2765 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 79, | |
"b": 119 | |
}, | |
"positionInBook": 809 | |
}, | |
{ | |
"code": "7667 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 140, | |
"b": 168 | |
}, | |
"positionInBook": 810 | |
}, | |
{ | |
"code": "7668 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 129, | |
"b": 164 | |
}, | |
"positionInBook": 811 | |
}, | |
{ | |
"code": "7669 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 120, | |
"b": 162 | |
}, | |
"positionInBook": 812 | |
}, | |
{ | |
"code": "7670 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 110, | |
"b": 154 | |
}, | |
"positionInBook": 813 | |
}, | |
{ | |
"code": "7671 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 105, | |
"b": 147 | |
}, | |
"positionInBook": 814 | |
}, | |
{ | |
"code": "7672 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 102, | |
"b": 142 | |
}, | |
"positionInBook": 815 | |
}, | |
{ | |
"code": "7673 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 109, | |
"b": 141 | |
}, | |
"positionInBook": 816 | |
}, | |
{ | |
"code": "7443 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 216, | |
"b": 235 | |
}, | |
"positionInBook": 817 | |
}, | |
{ | |
"code": "7444 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 189, | |
"b": 226 | |
}, | |
"positionInBook": 818 | |
}, | |
{ | |
"code": "7445 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 168, | |
"b": 199 | |
}, | |
"positionInBook": 819 | |
}, | |
{ | |
"code": "7446 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 147, | |
"b": 207 | |
}, | |
"positionInBook": 820 | |
}, | |
{ | |
"code": "7447 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 115, | |
"b": 146 | |
}, | |
"positionInBook": 821 | |
}, | |
{ | |
"code": "7448 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 104, | |
"b": 116 | |
}, | |
"positionInBook": 822 | |
}, | |
{ | |
"code": "7449 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 81, | |
"b": 92 | |
}, | |
"positionInBook": 823 | |
}, | |
{ | |
"code": "7674 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 150, | |
"b": 184 | |
}, | |
"positionInBook": 824 | |
}, | |
{ | |
"code": "7675 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 140, | |
"b": 175 | |
}, | |
"positionInBook": 825 | |
}, | |
{ | |
"code": "7676 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 122, | |
"b": 163 | |
}, | |
"positionInBook": 826 | |
}, | |
{ | |
"code": "7677 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 109, | |
"b": 150 | |
}, | |
"positionInBook": 827 | |
}, | |
{ | |
"code": "7678 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 102, | |
"b": 145 | |
}, | |
"positionInBook": 828 | |
}, | |
{ | |
"code": "7679 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 98, | |
"b": 139 | |
}, | |
"positionInBook": 829 | |
}, | |
{ | |
"code": "7680 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 89, | |
"b": 129 | |
}, | |
"positionInBook": 830 | |
}, | |
{ | |
"code": "663 U", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 217, | |
"b": 227 | |
}, | |
"positionInBook": 831 | |
}, | |
{ | |
"code": "664 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 207, | |
"b": 221 | |
}, | |
"positionInBook": 832 | |
}, | |
{ | |
"code": "665 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 184, | |
"b": 206 | |
}, | |
"positionInBook": 833 | |
}, | |
{ | |
"code": "666 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 161, | |
"b": 188 | |
}, | |
"positionInBook": 834 | |
}, | |
{ | |
"code": "667 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 131, | |
"b": 161 | |
}, | |
"positionInBook": 835 | |
}, | |
{ | |
"code": "668 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 115, | |
"b": 145 | |
}, | |
"positionInBook": 836 | |
}, | |
{ | |
"code": "669 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 99, | |
"b": 127 | |
}, | |
"positionInBook": 837 | |
}, | |
{ | |
"code": "5315 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 216, | |
"b": 225 | |
}, | |
"positionInBook": 838 | |
}, | |
{ | |
"code": "5305 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 194, | |
"b": 210 | |
}, | |
"positionInBook": 839 | |
}, | |
{ | |
"code": "5295 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 175, | |
"b": 195 | |
}, | |
"positionInBook": 840 | |
}, | |
{ | |
"code": "5285 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 148, | |
"b": 172 | |
}, | |
"positionInBook": 841 | |
}, | |
{ | |
"code": "5275 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 121, | |
"b": 146 | |
}, | |
"positionInBook": 842 | |
}, | |
{ | |
"code": "5265 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 107, | |
"b": 130 | |
}, | |
"positionInBook": 843 | |
}, | |
{ | |
"code": "5255 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 86, | |
"b": 108 | |
}, | |
"positionInBook": 844 | |
}, | |
{ | |
"code": "2358 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 154, | |
"b": 166 | |
}, | |
"positionInBook": 845 | |
}, | |
{ | |
"code": "2359 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 120, | |
"b": 133 | |
}, | |
"positionInBook": 846 | |
}, | |
{ | |
"code": "2360 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 125, | |
"b": 142 | |
}, | |
"positionInBook": 847 | |
}, | |
{ | |
"code": "2361 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 118, | |
"b": 140 | |
}, | |
"positionInBook": 848 | |
}, | |
{ | |
"code": "2362 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 119, | |
"b": 135 | |
}, | |
"positionInBook": 849 | |
}, | |
{ | |
"code": "2363 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 110, | |
"b": 125 | |
}, | |
"positionInBook": 850 | |
}, | |
{ | |
"code": "2364 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 107, | |
"b": 119 | |
}, | |
"positionInBook": 851 | |
}, | |
{ | |
"code": "2106 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 186, | |
"b": 209 | |
}, | |
"positionInBook": 852 | |
}, | |
{ | |
"code": "2107 U", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 161, | |
"b": 190 | |
}, | |
"positionInBook": 853 | |
}, | |
{ | |
"code": "2108 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 137, | |
"b": 169 | |
}, | |
"positionInBook": 854 | |
}, | |
{ | |
"code": "2109 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 124, | |
"b": 157 | |
}, | |
"positionInBook": 855 | |
}, | |
{ | |
"code": "2110 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 118, | |
"b": 149 | |
}, | |
"positionInBook": 856 | |
}, | |
{ | |
"code": "2111 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 106, | |
"b": 137 | |
}, | |
"positionInBook": 857 | |
}, | |
{ | |
"code": "2112 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 71, | |
"b": 112 | |
}, | |
"positionInBook": 858 | |
}, | |
{ | |
"code": "2113 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 178, | |
"b": 231 | |
}, | |
"positionInBook": 859 | |
}, | |
{ | |
"code": "2114 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 156, | |
"b": 209 | |
}, | |
"positionInBook": 860 | |
}, | |
{ | |
"code": "2115 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 142, | |
"b": 198 | |
}, | |
"positionInBook": 861 | |
}, | |
{ | |
"code": "2116 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 129, | |
"b": 187 | |
}, | |
"positionInBook": 862 | |
}, | |
{ | |
"code": "2117 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 105, | |
"b": 162 | |
}, | |
"positionInBook": 863 | |
}, | |
{ | |
"code": "2118 U", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 91, | |
"b": 133 | |
}, | |
"positionInBook": 864 | |
}, | |
{ | |
"code": "2119 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 85, | |
"b": 119 | |
}, | |
"positionInBook": 865 | |
}, | |
{ | |
"code": "2366 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 113, | |
"b": 200 | |
}, | |
"positionInBook": 866 | |
}, | |
{ | |
"code": "2367 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 100, | |
"b": 173 | |
}, | |
"positionInBook": 867 | |
}, | |
{ | |
"code": "2368 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 95, | |
"b": 183 | |
}, | |
"positionInBook": 868 | |
}, | |
{ | |
"code": "2369 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 92, | |
"b": 176 | |
}, | |
"positionInBook": 869 | |
}, | |
{ | |
"code": "2370 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 89, | |
"b": 155 | |
}, | |
"positionInBook": 870 | |
}, | |
{ | |
"code": "2371 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 70, | |
"b": 141 | |
}, | |
"positionInBook": 871 | |
}, | |
{ | |
"code": "2372 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 78, | |
"b": 128 | |
}, | |
"positionInBook": 872 | |
}, | |
{ | |
"code": "538 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 215, | |
"b": 225 | |
}, | |
"positionInBook": 873 | |
}, | |
{ | |
"code": "537 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 202, | |
"b": 218 | |
}, | |
"positionInBook": 874 | |
}, | |
{ | |
"code": "536 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 181, | |
"b": 203 | |
}, | |
"positionInBook": 875 | |
}, | |
{ | |
"code": "535 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 157, | |
"b": 184 | |
}, | |
"positionInBook": 876 | |
}, | |
{ | |
"code": "534 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 105, | |
"b": 131 | |
}, | |
"positionInBook": 877 | |
}, | |
{ | |
"code": "533 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 101, | |
"b": 120 | |
}, | |
"positionInBook": 878 | |
}, | |
{ | |
"code": "532 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 92, | |
"b": 100 | |
}, | |
"positionInBook": 879 | |
}, | |
{ | |
"code": "7541 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 228, | |
"b": 230 | |
}, | |
"positionInBook": 880 | |
}, | |
{ | |
"code": "7542 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 197, | |
"b": 204 | |
}, | |
"positionInBook": 881 | |
}, | |
{ | |
"code": "7543 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 184, | |
"b": 192 | |
}, | |
"positionInBook": 882 | |
}, | |
{ | |
"code": "7544 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 165, | |
"b": 175 | |
}, | |
"positionInBook": 883 | |
}, | |
{ | |
"code": "7545 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 131, | |
"b": 142 | |
}, | |
"positionInBook": 884 | |
}, | |
{ | |
"code": "7546 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 112, | |
"b": 122 | |
}, | |
"positionInBook": 885 | |
}, | |
{ | |
"code": "7547 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 84, | |
"b": 93 | |
}, | |
"positionInBook": 886 | |
}, | |
{ | |
"code": "2162 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 165, | |
"b": 179 | |
}, | |
"positionInBook": 887 | |
}, | |
{ | |
"code": "2163 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 161, | |
"b": 178 | |
}, | |
"positionInBook": 888 | |
}, | |
{ | |
"code": "2164 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 151, | |
"b": 169 | |
}, | |
"positionInBook": 889 | |
}, | |
{ | |
"code": "2165 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 135, | |
"b": 154 | |
}, | |
"positionInBook": 890 | |
}, | |
{ | |
"code": "2166 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 126, | |
"b": 145 | |
}, | |
"positionInBook": 891 | |
}, | |
{ | |
"code": "2167 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 119, | |
"b": 137 | |
}, | |
"positionInBook": 892 | |
}, | |
{ | |
"code": "2168 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 105, | |
"b": 117 | |
}, | |
"positionInBook": 893 | |
}, | |
{ | |
"code": "2373 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 132, | |
"b": 156 | |
}, | |
"positionInBook": 894 | |
}, | |
{ | |
"code": "2374 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 105, | |
"b": 127 | |
}, | |
"positionInBook": 895 | |
}, | |
{ | |
"code": "2376 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 109, | |
"b": 125 | |
}, | |
"positionInBook": 896 | |
}, | |
{ | |
"code": "2377 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 105, | |
"b": 123 | |
}, | |
"positionInBook": 897 | |
}, | |
{ | |
"code": "2378 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 95, | |
"b": 114 | |
}, | |
"positionInBook": 898 | |
}, | |
{ | |
"code": "2379 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 92, | |
"b": 104 | |
}, | |
"positionInBook": 899 | |
}, | |
{ | |
"code": "2380 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 87, | |
"b": 102 | |
}, | |
"positionInBook": 900 | |
}, | |
{ | |
"code": "552 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 208, | |
"b": 220 | |
}, | |
"positionInBook": 901 | |
}, | |
{ | |
"code": "551 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 192, | |
"b": 206 | |
}, | |
"positionInBook": 902 | |
}, | |
{ | |
"code": "550 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 170, | |
"b": 190 | |
}, | |
"positionInBook": 903 | |
}, | |
{ | |
"code": "549 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 153, | |
"b": 174 | |
}, | |
"positionInBook": 904 | |
}, | |
{ | |
"code": "548 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 94, | |
"b": 111 | |
}, | |
"positionInBook": 905 | |
}, | |
{ | |
"code": "547 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 88, | |
"b": 102 | |
}, | |
"positionInBook": 906 | |
}, | |
{ | |
"code": "546 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 80, | |
"b": 88 | |
}, | |
"positionInBook": 907 | |
}, | |
{ | |
"code": "5455 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 215, | |
"b": 224 | |
}, | |
"positionInBook": 908 | |
}, | |
{ | |
"code": "5445 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 199, | |
"b": 211 | |
}, | |
"positionInBook": 909 | |
}, | |
{ | |
"code": "5435 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 180, | |
"b": 196 | |
}, | |
"positionInBook": 910 | |
}, | |
{ | |
"code": "5425 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 147, | |
"b": 165 | |
}, | |
"positionInBook": 911 | |
}, | |
{ | |
"code": "5415 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 127, | |
"b": 145 | |
}, | |
"positionInBook": 912 | |
}, | |
{ | |
"code": "5405 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 111, | |
"b": 128 | |
}, | |
"positionInBook": 913 | |
}, | |
{ | |
"code": "5395 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 76, | |
"b": 89 | |
}, | |
"positionInBook": 914 | |
}, | |
{ | |
"code": "2155 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 186, | |
"b": 208 | |
}, | |
"positionInBook": 915 | |
}, | |
{ | |
"code": "2156 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 169, | |
"b": 196 | |
}, | |
"positionInBook": 916 | |
}, | |
{ | |
"code": "2157 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 151, | |
"b": 180 | |
}, | |
"positionInBook": 917 | |
}, | |
{ | |
"code": "2158 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 139, | |
"b": 168 | |
}, | |
"positionInBook": 918 | |
}, | |
{ | |
"code": "2159 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 130, | |
"b": 159 | |
}, | |
"positionInBook": 919 | |
}, | |
{ | |
"code": "2160 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 120, | |
"b": 149 | |
}, | |
"positionInBook": 920 | |
}, | |
{ | |
"code": "2161 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 106, | |
"b": 135 | |
}, | |
"positionInBook": 921 | |
}, | |
{ | |
"code": "2134 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 176, | |
"b": 214 | |
}, | |
"positionInBook": 922 | |
}, | |
{ | |
"code": "2135 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 152, | |
"b": 198 | |
}, | |
"positionInBook": 923 | |
}, | |
{ | |
"code": "2136 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 149, | |
"b": 182 | |
}, | |
"positionInBook": 924 | |
}, | |
{ | |
"code": "2137 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 134, | |
"b": 169 | |
}, | |
"positionInBook": 925 | |
}, | |
{ | |
"code": "2138 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 122, | |
"b": 143 | |
}, | |
"positionInBook": 926 | |
}, | |
{ | |
"code": "2139 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 118, | |
"b": 150 | |
}, | |
"positionInBook": 927 | |
}, | |
{ | |
"code": "2140 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 103, | |
"b": 137 | |
}, | |
"positionInBook": 928 | |
}, | |
{ | |
"code": "642 U", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 224, | |
"b": 234 | |
}, | |
"positionInBook": 929 | |
}, | |
{ | |
"code": "643 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 210, | |
"b": 228 | |
}, | |
"positionInBook": 930 | |
}, | |
{ | |
"code": "644 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 185, | |
"b": 213 | |
}, | |
"positionInBook": 931 | |
}, | |
{ | |
"code": "645 U", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 163, | |
"b": 196 | |
}, | |
"positionInBook": 932 | |
}, | |
{ | |
"code": "646 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 141, | |
"b": 176 | |
}, | |
"positionInBook": 933 | |
}, | |
{ | |
"code": "647 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 122, | |
"b": 157 | |
}, | |
"positionInBook": 934 | |
}, | |
{ | |
"code": "648 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 98, | |
"b": 130 | |
}, | |
"positionInBook": 935 | |
}, | |
{ | |
"code": "649 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 231, | |
"b": 238 | |
}, | |
"positionInBook": 936 | |
}, | |
{ | |
"code": "650 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 224, | |
"b": 235 | |
}, | |
"positionInBook": 937 | |
}, | |
{ | |
"code": "651 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 195, | |
"b": 219 | |
}, | |
"positionInBook": 938 | |
}, | |
{ | |
"code": "652 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 162, | |
"b": 196 | |
}, | |
"positionInBook": 939 | |
}, | |
{ | |
"code": "653 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 128, | |
"b": 164 | |
}, | |
"positionInBook": 940 | |
}, | |
{ | |
"code": "654 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 104, | |
"b": 139 | |
}, | |
"positionInBook": 941 | |
}, | |
{ | |
"code": "655 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 93, | |
"b": 127 | |
}, | |
"positionInBook": 942 | |
}, | |
{ | |
"code": "656 U", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 234, | |
"b": 242 | |
}, | |
"positionInBook": 943 | |
}, | |
{ | |
"code": "657 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 226, | |
"b": 242 | |
}, | |
"positionInBook": 944 | |
}, | |
{ | |
"code": "658 U", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 207, | |
"b": 238 | |
}, | |
"positionInBook": 945 | |
}, | |
{ | |
"code": "659 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 182, | |
"b": 229 | |
}, | |
"positionInBook": 946 | |
}, | |
{ | |
"code": "660 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 139, | |
"b": 204 | |
}, | |
"positionInBook": 947 | |
}, | |
{ | |
"code": "661 U", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 103, | |
"b": 170 | |
}, | |
"positionInBook": 948 | |
}, | |
{ | |
"code": "662 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 83, | |
"b": 144 | |
}, | |
"positionInBook": 949 | |
}, | |
{ | |
"code": "2127 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 205, | |
"b": 229 | |
}, | |
"positionInBook": 950 | |
}, | |
{ | |
"code": "2128 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 180, | |
"b": 230 | |
}, | |
"positionInBook": 951 | |
}, | |
{ | |
"code": "2129 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 143, | |
"b": 219 | |
}, | |
"positionInBook": 952 | |
}, | |
{ | |
"code": "2130 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 123, | |
"b": 207 | |
}, | |
"positionInBook": 953 | |
}, | |
{ | |
"code": "2131 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 108, | |
"b": 186 | |
}, | |
"positionInBook": 954 | |
}, | |
{ | |
"code": "2132 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 109, | |
"b": 196 | |
}, | |
"positionInBook": 955 | |
}, | |
{ | |
"code": "2133 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 112, | |
"b": 170 | |
}, | |
"positionInBook": 956 | |
}, | |
{ | |
"code": "7450 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 203, | |
"b": 224 | |
}, | |
"positionInBook": 957 | |
}, | |
{ | |
"code": "7451 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 179, | |
"b": 234 | |
}, | |
"positionInBook": 958 | |
}, | |
{ | |
"code": "7452 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 160, | |
"b": 228 | |
}, | |
"positionInBook": 959 | |
}, | |
{ | |
"code": "7453 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 173, | |
"b": 227 | |
}, | |
"positionInBook": 960 | |
}, | |
{ | |
"code": "7454 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 153, | |
"b": 187 | |
}, | |
"positionInBook": 961 | |
}, | |
{ | |
"code": "7455 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 125, | |
"b": 185 | |
}, | |
"positionInBook": 962 | |
}, | |
{ | |
"code": "7456 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 137, | |
"b": 192 | |
}, | |
"positionInBook": 963 | |
}, | |
{ | |
"code": "2120 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 197, | |
"b": 235 | |
}, | |
"positionInBook": 964 | |
}, | |
{ | |
"code": "2121 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 170, | |
"b": 217 | |
}, | |
"positionInBook": 965 | |
}, | |
{ | |
"code": "2122 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 164, | |
"b": 227 | |
}, | |
"positionInBook": 966 | |
}, | |
{ | |
"code": "2123 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 139, | |
"b": 217 | |
}, | |
"positionInBook": 967 | |
}, | |
{ | |
"code": "2124 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 119, | |
"b": 204 | |
}, | |
"positionInBook": 968 | |
}, | |
{ | |
"code": "2125 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 108, | |
"b": 196 | |
}, | |
"positionInBook": 969 | |
}, | |
{ | |
"code": "2126 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 91, | |
"b": 177 | |
}, | |
"positionInBook": 970 | |
}, | |
{ | |
"code": "2706 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 212, | |
"b": 241 | |
}, | |
"positionInBook": 971 | |
}, | |
{ | |
"code": "2716 U", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 175, | |
"b": 233 | |
}, | |
"positionInBook": 972 | |
}, | |
{ | |
"code": "2726 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 122, | |
"b": 207 | |
}, | |
"positionInBook": 973 | |
}, | |
{ | |
"code": "2736 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 96, | |
"b": 186 | |
}, | |
"positionInBook": 974 | |
}, | |
{ | |
"code": "2746 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 92, | |
"b": 165 | |
}, | |
"positionInBook": 975 | |
}, | |
{ | |
"code": "2756 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 92, | |
"b": 140 | |
}, | |
"positionInBook": 976 | |
}, | |
{ | |
"code": "2766 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 90, | |
"b": 124 | |
}, | |
"positionInBook": 977 | |
}, | |
{ | |
"code": "2708 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 201, | |
"b": 239 | |
}, | |
"positionInBook": 978 | |
}, | |
{ | |
"code": "2718 U", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 135, | |
"b": 216 | |
}, | |
"positionInBook": 979 | |
}, | |
{ | |
"code": "2728 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 104, | |
"b": 194 | |
}, | |
"positionInBook": 980 | |
}, | |
{ | |
"code": "2738 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 77, | |
"b": 164 | |
}, | |
"positionInBook": 981 | |
}, | |
{ | |
"code": "2748 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 79, | |
"b": 140 | |
}, | |
"positionInBook": 982 | |
}, | |
{ | |
"code": "2758 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 77, | |
"b": 122 | |
}, | |
"positionInBook": 983 | |
}, | |
{ | |
"code": "2768 U", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 78, | |
"b": 109 | |
}, | |
"positionInBook": 984 | |
}, | |
{ | |
"code": "2707 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 219, | |
"b": 244 | |
}, | |
"positionInBook": 985 | |
}, | |
{ | |
"code": "2717 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 200, | |
"b": 244 | |
}, | |
"positionInBook": 986 | |
}, | |
{ | |
"code": "2727 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 144, | |
"b": 232 | |
}, | |
"positionInBook": 987 | |
}, | |
{ | |
"code": "Blue 072 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 67, | |
"b": 173 | |
}, | |
"positionInBook": 988 | |
}, | |
{ | |
"code": "2747 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 79, | |
"b": 144 | |
}, | |
"positionInBook": 989 | |
}, | |
{ | |
"code": "2757 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 79, | |
"b": 126 | |
}, | |
"positionInBook": 990 | |
}, | |
{ | |
"code": "2767 U", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 76, | |
"b": 100 | |
}, | |
"positionInBook": 991 | |
}, | |
{ | |
"code": "277 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 207, | |
"b": 241 | |
}, | |
"positionInBook": 992 | |
}, | |
{ | |
"code": "278 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 186, | |
"b": 237 | |
}, | |
"positionInBook": 993 | |
}, | |
{ | |
"code": "279 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 142, | |
"b": 219 | |
}, | |
"positionInBook": 994 | |
}, | |
{ | |
"code": "Reflex Blue U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 73, | |
"b": 156 | |
}, | |
"positionInBook": 995 | |
}, | |
{ | |
"code": "280 U", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 73, | |
"b": 129 | |
}, | |
"positionInBook": 996 | |
}, | |
{ | |
"code": "281 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 74, | |
"b": 117 | |
}, | |
"positionInBook": 997 | |
}, | |
{ | |
"code": "282 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 73, | |
"b": 103 | |
}, | |
"positionInBook": 998 | |
}, | |
{ | |
"code": "283 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 199, | |
"b": 238 | |
}, | |
"positionInBook": 999 | |
}, | |
{ | |
"code": "284 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 177, | |
"b": 232 | |
}, | |
"positionInBook": 1000 | |
}, | |
{ | |
"code": "285 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 130, | |
"b": 207 | |
}, | |
"positionInBook": 1001 | |
}, | |
{ | |
"code": "286 U", | |
"name": null, | |
"rgb": { | |
"r": 49, | |
"g": 85, | |
"b": 164 | |
}, | |
"positionInBook": 1002 | |
}, | |
{ | |
"code": "287 U", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 88, | |
"b": 150 | |
}, | |
"positionInBook": 1003 | |
}, | |
{ | |
"code": "288 U", | |
"name": null, | |
"rgb": { | |
"r": 61, | |
"g": 85, | |
"b": 136 | |
}, | |
"positionInBook": 1004 | |
}, | |
{ | |
"code": "289 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 79, | |
"b": 105 | |
}, | |
"positionInBook": 1005 | |
}, | |
{ | |
"code": "7681 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 176, | |
"b": 208 | |
}, | |
"positionInBook": 1006 | |
}, | |
{ | |
"code": "7682 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 151, | |
"b": 191 | |
}, | |
"positionInBook": 1007 | |
}, | |
{ | |
"code": "7683 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 130, | |
"b": 176 | |
}, | |
"positionInBook": 1008 | |
}, | |
{ | |
"code": "7684 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 118, | |
"b": 163 | |
}, | |
"positionInBook": 1009 | |
}, | |
{ | |
"code": "7685 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 113, | |
"b": 157 | |
}, | |
"positionInBook": 1010 | |
}, | |
{ | |
"code": "7686 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 105, | |
"b": 149 | |
}, | |
"positionInBook": 1011 | |
}, | |
{ | |
"code": "7687 U", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 95, | |
"b": 141 | |
}, | |
"positionInBook": 1012 | |
}, | |
{ | |
"code": "2141 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 186, | |
"b": 233 | |
}, | |
"positionInBook": 1013 | |
}, | |
{ | |
"code": "2142 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 179, | |
"b": 232 | |
}, | |
"positionInBook": 1014 | |
}, | |
{ | |
"code": "2143 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 142, | |
"b": 205 | |
}, | |
"positionInBook": 1015 | |
}, | |
{ | |
"code": "2144 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 123, | |
"b": 189 | |
}, | |
"positionInBook": 1016 | |
}, | |
{ | |
"code": "2145 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 108, | |
"b": 174 | |
}, | |
"positionInBook": 1017 | |
}, | |
{ | |
"code": "2146 U", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 82, | |
"b": 148 | |
}, | |
"positionInBook": 1018 | |
}, | |
{ | |
"code": "2147 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 79, | |
"b": 132 | |
}, | |
"positionInBook": 1019 | |
}, | |
{ | |
"code": "545 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 207, | |
"b": 230 | |
}, | |
"positionInBook": 1020 | |
}, | |
{ | |
"code": "544 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 193, | |
"b": 223 | |
}, | |
"positionInBook": 1021 | |
}, | |
{ | |
"code": "543 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 171, | |
"b": 210 | |
}, | |
"positionInBook": 1022 | |
}, | |
{ | |
"code": "542 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 156, | |
"b": 198 | |
}, | |
"positionInBook": 1023 | |
}, | |
{ | |
"code": "541 U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 85, | |
"b": 124 | |
}, | |
"positionInBook": 1024 | |
}, | |
{ | |
"code": "540 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 82, | |
"b": 111 | |
}, | |
"positionInBook": 1025 | |
}, | |
{ | |
"code": "539 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 80, | |
"b": 98 | |
}, | |
"positionInBook": 1026 | |
}, | |
{ | |
"code": "290 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 212, | |
"b": 238 | |
}, | |
"positionInBook": 1027 | |
}, | |
{ | |
"code": "291 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 190, | |
"b": 235 | |
}, | |
"positionInBook": 1028 | |
}, | |
{ | |
"code": "292 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 168, | |
"b": 229 | |
}, | |
"positionInBook": 1029 | |
}, | |
{ | |
"code": "293 U", | |
"name": null, | |
"rgb": { | |
"r": 35, | |
"g": 91, | |
"b": 168 | |
}, | |
"positionInBook": 1030 | |
}, | |
{ | |
"code": "294 U", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 89, | |
"b": 136 | |
}, | |
"positionInBook": 1031 | |
}, | |
{ | |
"code": "295 U", | |
"name": null, | |
"rgb": { | |
"r": 55, | |
"g": 81, | |
"b": 114 | |
}, | |
"positionInBook": 1032 | |
}, | |
{ | |
"code": "296 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 80, | |
"b": 96 | |
}, | |
"positionInBook": 1033 | |
}, | |
{ | |
"code": "2905 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 201, | |
"b": 237 | |
}, | |
"positionInBook": 1034 | |
}, | |
{ | |
"code": "2915 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 179, | |
"b": 232 | |
}, | |
"positionInBook": 1035 | |
}, | |
{ | |
"code": "2925 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 151, | |
"b": 219 | |
}, | |
"positionInBook": 1036 | |
}, | |
{ | |
"code": "2935 U", | |
"name": null, | |
"rgb": { | |
"r": 27, | |
"g": 95, | |
"b": 170 | |
}, | |
"positionInBook": 1037 | |
}, | |
{ | |
"code": "2945 U", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 88, | |
"b": 140 | |
}, | |
"positionInBook": 1038 | |
}, | |
{ | |
"code": "2955 U", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 87, | |
"b": 117 | |
}, | |
"positionInBook": 1039 | |
}, | |
{ | |
"code": "2965 U", | |
"name": null, | |
"rgb": { | |
"r": 61, | |
"g": 82, | |
"b": 101 | |
}, | |
"positionInBook": 1040 | |
}, | |
{ | |
"code": "2169 U", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 177, | |
"b": 212 | |
}, | |
"positionInBook": 1041 | |
}, | |
{ | |
"code": "2170 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 150, | |
"b": 192 | |
}, | |
"positionInBook": 1042 | |
}, | |
{ | |
"code": "2171 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 150, | |
"b": 220 | |
}, | |
"positionInBook": 1043 | |
}, | |
{ | |
"code": "2172 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 133, | |
"b": 212 | |
}, | |
"positionInBook": 1044 | |
}, | |
{ | |
"code": "2173 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 130, | |
"b": 208 | |
}, | |
"positionInBook": 1045 | |
}, | |
{ | |
"code": "2174 U", | |
"name": null, | |
"rgb": { | |
"r": 61, | |
"g": 122, | |
"b": 202 | |
}, | |
"positionInBook": 1046 | |
}, | |
{ | |
"code": "2175 U", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 115, | |
"b": 195 | |
}, | |
"positionInBook": 1047 | |
}, | |
{ | |
"code": "2381 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 142, | |
"b": 217 | |
}, | |
"positionInBook": 1048 | |
}, | |
{ | |
"code": "2382 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 131, | |
"b": 210 | |
}, | |
"positionInBook": 1049 | |
}, | |
{ | |
"code": "2383 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 116, | |
"b": 162 | |
}, | |
"positionInBook": 1050 | |
}, | |
{ | |
"code": "2384 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 105, | |
"b": 151 | |
}, | |
"positionInBook": 1051 | |
}, | |
{ | |
"code": "2386 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 112, | |
"b": 190 | |
}, | |
"positionInBook": 1052 | |
}, | |
{ | |
"code": "2387 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 104, | |
"b": 190 | |
}, | |
"positionInBook": 1053 | |
}, | |
{ | |
"code": "2388 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 94, | |
"b": 169 | |
}, | |
"positionInBook": 1054 | |
}, | |
{ | |
"code": "297 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 204, | |
"b": 238 | |
}, | |
"positionInBook": 1055 | |
}, | |
{ | |
"code": "298 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 180, | |
"b": 231 | |
}, | |
"positionInBook": 1056 | |
}, | |
{ | |
"code": "299 U", | |
"name": null, | |
"rgb": { | |
"r": 18, | |
"g": 149, | |
"b": 216 | |
}, | |
"positionInBook": 1057 | |
}, | |
{ | |
"code": "300 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 110, | |
"b": 182 | |
}, | |
"positionInBook": 1058 | |
}, | |
{ | |
"code": "301 U", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 98, | |
"b": 142 | |
}, | |
"positionInBook": 1059 | |
}, | |
{ | |
"code": "302 U", | |
"name": null, | |
"rgb": { | |
"r": 55, | |
"g": 94, | |
"b": 119 | |
}, | |
"positionInBook": 1060 | |
}, | |
{ | |
"code": "303 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 86, | |
"b": 102 | |
}, | |
"positionInBook": 1061 | |
}, | |
{ | |
"code": "7688 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 154, | |
"b": 202 | |
}, | |
"positionInBook": 1062 | |
}, | |
{ | |
"code": "7689 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 147, | |
"b": 193 | |
}, | |
"positionInBook": 1063 | |
}, | |
{ | |
"code": "7690 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 127, | |
"b": 167 | |
}, | |
"positionInBook": 1064 | |
}, | |
{ | |
"code": "7691 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 114, | |
"b": 152 | |
}, | |
"positionInBook": 1065 | |
}, | |
{ | |
"code": "7692 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 107, | |
"b": 139 | |
}, | |
"positionInBook": 1066 | |
}, | |
{ | |
"code": "7693 U", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 100, | |
"b": 128 | |
}, | |
"positionInBook": 1067 | |
}, | |
{ | |
"code": "7694 U", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 97, | |
"b": 121 | |
}, | |
"positionInBook": 1068 | |
}, | |
{ | |
"code": "2148 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 150, | |
"b": 181 | |
}, | |
"positionInBook": 1069 | |
}, | |
{ | |
"code": "2149 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 138, | |
"b": 169 | |
}, | |
"positionInBook": 1070 | |
}, | |
{ | |
"code": "2150 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 128, | |
"b": 159 | |
}, | |
"positionInBook": 1071 | |
}, | |
{ | |
"code": "2151 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 117, | |
"b": 160 | |
}, | |
"positionInBook": 1072 | |
}, | |
{ | |
"code": "2152 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 115, | |
"b": 146 | |
}, | |
"positionInBook": 1073 | |
}, | |
{ | |
"code": "2153 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 108, | |
"b": 136 | |
}, | |
"positionInBook": 1074 | |
}, | |
{ | |
"code": "2154 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 96, | |
"b": 136 | |
}, | |
"positionInBook": 1075 | |
}, | |
{ | |
"code": "2183 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 146, | |
"b": 186 | |
}, | |
"positionInBook": 1076 | |
}, | |
{ | |
"code": "2184 U", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 137, | |
"b": 213 | |
}, | |
"positionInBook": 1077 | |
}, | |
{ | |
"code": "2185 U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 127, | |
"b": 166 | |
}, | |
"positionInBook": 1078 | |
}, | |
{ | |
"code": "2186 U", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 96, | |
"b": 141 | |
}, | |
"positionInBook": 1079 | |
}, | |
{ | |
"code": "2187 U", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 93, | |
"b": 127 | |
}, | |
"positionInBook": 1080 | |
}, | |
{ | |
"code": "2188 U", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 92, | |
"b": 120 | |
}, | |
"positionInBook": 1081 | |
}, | |
{ | |
"code": "2189 U", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 88, | |
"b": 104 | |
}, | |
"positionInBook": 1082 | |
}, | |
{ | |
"code": "2975 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 213, | |
"b": 238 | |
}, | |
"positionInBook": 1083 | |
}, | |
{ | |
"code": "2985 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 184, | |
"b": 231 | |
}, | |
"positionInBook": 1084 | |
}, | |
{ | |
"code": "2995 U", | |
"name": null, | |
"rgb": { | |
"r": 13, | |
"g": 157, | |
"b": 219 | |
}, | |
"positionInBook": 1085 | |
}, | |
{ | |
"code": "3005 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 120, | |
"b": 191 | |
}, | |
"positionInBook": 1086 | |
}, | |
{ | |
"code": "3015 U", | |
"name": null, | |
"rgb": { | |
"r": 33, | |
"g": 106, | |
"b": 149 | |
}, | |
"positionInBook": 1087 | |
}, | |
{ | |
"code": "3025 U", | |
"name": null, | |
"rgb": { | |
"r": 55, | |
"g": 97, | |
"b": 122 | |
}, | |
"positionInBook": 1088 | |
}, | |
{ | |
"code": "3035 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 88, | |
"b": 102 | |
}, | |
"positionInBook": 1089 | |
}, | |
{ | |
"code": "2190 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 178, | |
"b": 233 | |
}, | |
"positionInBook": 1090 | |
}, | |
{ | |
"code": "2191 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 164, | |
"b": 228 | |
}, | |
"positionInBook": 1091 | |
}, | |
{ | |
"code": "2192 U", | |
"name": null, | |
"rgb": { | |
"r": 21, | |
"g": 151, | |
"b": 221 | |
}, | |
"positionInBook": 1092 | |
}, | |
{ | |
"code": "2193 U", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 142, | |
"b": 216 | |
}, | |
"positionInBook": 1093 | |
}, | |
{ | |
"code": "2194 U", | |
"name": null, | |
"rgb": { | |
"r": 4, | |
"g": 140, | |
"b": 214 | |
}, | |
"positionInBook": 1094 | |
}, | |
{ | |
"code": "2195 U", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 126, | |
"b": 206 | |
}, | |
"positionInBook": 1095 | |
}, | |
{ | |
"code": "2196 U", | |
"name": null, | |
"rgb": { | |
"r": 20, | |
"g": 102, | |
"b": 160 | |
}, | |
"positionInBook": 1096 | |
}, | |
{ | |
"code": "7695 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 168, | |
"b": 189 | |
}, | |
"positionInBook": 1097 | |
}, | |
{ | |
"code": "7696 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 155, | |
"b": 175 | |
}, | |
"positionInBook": 1098 | |
}, | |
{ | |
"code": "7697 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 143, | |
"b": 164 | |
}, | |
"positionInBook": 1099 | |
}, | |
{ | |
"code": "7698 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 127, | |
"b": 146 | |
}, | |
"positionInBook": 1100 | |
}, | |
{ | |
"code": "7699 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 118, | |
"b": 136 | |
}, | |
"positionInBook": 1101 | |
}, | |
{ | |
"code": "7700 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 113, | |
"b": 136 | |
}, | |
"positionInBook": 1102 | |
}, | |
{ | |
"code": "7701 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 107, | |
"b": 128 | |
}, | |
"positionInBook": 1103 | |
}, | |
{ | |
"code": "2176 U", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 196, | |
"b": 204 | |
}, | |
"positionInBook": 1104 | |
}, | |
{ | |
"code": "2177 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 169, | |
"b": 180 | |
}, | |
"positionInBook": 1105 | |
}, | |
{ | |
"code": "2178 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 152, | |
"b": 163 | |
}, | |
"positionInBook": 1106 | |
}, | |
{ | |
"code": "2179 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 138, | |
"b": 150 | |
}, | |
"positionInBook": 1107 | |
}, | |
{ | |
"code": "2180 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 123, | |
"b": 136 | |
}, | |
"positionInBook": 1108 | |
}, | |
{ | |
"code": "2181 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 112, | |
"b": 124 | |
}, | |
"positionInBook": 1109 | |
}, | |
{ | |
"code": "2182 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 106, | |
"b": 118 | |
}, | |
"positionInBook": 1110 | |
}, | |
{ | |
"code": "2204 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 206, | |
"b": 217 | |
}, | |
"positionInBook": 1111 | |
}, | |
{ | |
"code": "2205 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 177, | |
"b": 197 | |
}, | |
"positionInBook": 1112 | |
}, | |
{ | |
"code": "2206 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 162, | |
"b": 182 | |
}, | |
"positionInBook": 1113 | |
}, | |
{ | |
"code": "2207 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 157, | |
"b": 179 | |
}, | |
"positionInBook": 1114 | |
}, | |
{ | |
"code": "2208 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 143, | |
"b": 164 | |
}, | |
"positionInBook": 1115 | |
}, | |
{ | |
"code": "2209 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 142, | |
"b": 164 | |
}, | |
"positionInBook": 1116 | |
}, | |
{ | |
"code": "2210 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 101, | |
"b": 123 | |
}, | |
"positionInBook": 1117 | |
}, | |
{ | |
"code": "7457 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 227, | |
"b": 237 | |
}, | |
"positionInBook": 1118 | |
}, | |
{ | |
"code": "7458 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 165, | |
"b": 191 | |
}, | |
"positionInBook": 1119 | |
}, | |
{ | |
"code": "7459 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 142, | |
"b": 170 | |
}, | |
"positionInBook": 1120 | |
}, | |
{ | |
"code": "7460 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 142, | |
"b": 192 | |
}, | |
"positionInBook": 1121 | |
}, | |
{ | |
"code": "7461 U", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 146, | |
"b": 198 | |
}, | |
"positionInBook": 1122 | |
}, | |
{ | |
"code": "7462 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 122, | |
"b": 163 | |
}, | |
"positionInBook": 1123 | |
}, | |
{ | |
"code": "7463 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 101, | |
"b": 125 | |
}, | |
"positionInBook": 1124 | |
}, | |
{ | |
"code": "304 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 221, | |
"b": 237 | |
}, | |
"positionInBook": 1125 | |
}, | |
{ | |
"code": "305 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 202, | |
"b": 236 | |
}, | |
"positionInBook": 1126 | |
}, | |
{ | |
"code": "306 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 180, | |
"b": 228 | |
}, | |
"positionInBook": 1127 | |
}, | |
{ | |
"code": "Process Blue U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 131, | |
"b": 195 | |
}, | |
"positionInBook": 1128 | |
}, | |
{ | |
"code": "307 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 116, | |
"b": 162 | |
}, | |
"positionInBook": 1129 | |
}, | |
{ | |
"code": "308 U", | |
"name": null, | |
"rgb": { | |
"r": 38, | |
"g": 103, | |
"b": 130 | |
}, | |
"positionInBook": 1130 | |
}, | |
{ | |
"code": "309 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 88, | |
"b": 100 | |
}, | |
"positionInBook": 1131 | |
}, | |
{ | |
"code": "635 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 227, | |
"b": 239 | |
}, | |
"positionInBook": 1132 | |
}, | |
{ | |
"code": "636 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 216, | |
"b": 237 | |
}, | |
"positionInBook": 1133 | |
}, | |
{ | |
"code": "637 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 200, | |
"b": 229 | |
}, | |
"positionInBook": 1134 | |
}, | |
{ | |
"code": "638 U", | |
"name": null, | |
"rgb": { | |
"r": 50, | |
"g": 184, | |
"b": 222 | |
}, | |
"positionInBook": 1135 | |
}, | |
{ | |
"code": "639 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 158, | |
"b": 204 | |
}, | |
"positionInBook": 1136 | |
}, | |
{ | |
"code": "640 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 138, | |
"b": 186 | |
}, | |
"positionInBook": 1137 | |
}, | |
{ | |
"code": "641 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 120, | |
"b": 167 | |
}, | |
"positionInBook": 1138 | |
}, | |
{ | |
"code": "2389 U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 158, | |
"b": 198 | |
}, | |
"positionInBook": 1139 | |
}, | |
{ | |
"code": "2390 U", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 132, | |
"b": 170 | |
}, | |
"positionInBook": 1140 | |
}, | |
{ | |
"code": "2391 U", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 132, | |
"b": 161 | |
}, | |
"positionInBook": 1141 | |
}, | |
{ | |
"code": "2392 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 124, | |
"b": 145 | |
}, | |
"positionInBook": 1142 | |
}, | |
{ | |
"code": "2393 U", | |
"name": null, | |
"rgb": { | |
"r": 5, | |
"g": 151, | |
"b": 204 | |
}, | |
"positionInBook": 1143 | |
}, | |
{ | |
"code": "2394 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 145, | |
"b": 206 | |
}, | |
"positionInBook": 1144 | |
}, | |
{ | |
"code": "2396 U", | |
"name": null, | |
"rgb": { | |
"r": 19, | |
"g": 150, | |
"b": 171 | |
}, | |
"positionInBook": 1145 | |
}, | |
{ | |
"code": "7702 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 171, | |
"b": 198 | |
}, | |
"positionInBook": 1146 | |
}, | |
{ | |
"code": "7703 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 160, | |
"b": 191 | |
}, | |
"positionInBook": 1147 | |
}, | |
{ | |
"code": "7704 U", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 139, | |
"b": 172 | |
}, | |
"positionInBook": 1148 | |
}, | |
{ | |
"code": "7705 U", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 125, | |
"b": 154 | |
}, | |
"positionInBook": 1149 | |
}, | |
{ | |
"code": "7706 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 122, | |
"b": 148 | |
}, | |
"positionInBook": 1150 | |
}, | |
{ | |
"code": "7707 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 115, | |
"b": 136 | |
}, | |
"positionInBook": 1151 | |
}, | |
{ | |
"code": "7708 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 107, | |
"b": 125 | |
}, | |
"positionInBook": 1152 | |
}, | |
{ | |
"code": "2197 U", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 212, | |
"b": 235 | |
}, | |
"positionInBook": 1153 | |
}, | |
{ | |
"code": "2198 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 201, | |
"b": 230 | |
}, | |
"positionInBook": 1154 | |
}, | |
{ | |
"code": "2199 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 187, | |
"b": 222 | |
}, | |
"positionInBook": 1155 | |
}, | |
{ | |
"code": "2200 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 169, | |
"b": 199 | |
}, | |
"positionInBook": 1156 | |
}, | |
{ | |
"code": "2201 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 175, | |
"b": 215 | |
}, | |
"positionInBook": 1157 | |
}, | |
{ | |
"code": "2202 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 170, | |
"b": 227 | |
}, | |
"positionInBook": 1158 | |
}, | |
{ | |
"code": "2203 U", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 141, | |
"b": 173 | |
}, | |
"positionInBook": 1159 | |
}, | |
{ | |
"code": "628 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 224, | |
"b": 230 | |
}, | |
"positionInBook": 1160 | |
}, | |
{ | |
"code": "629 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 208, | |
"b": 222 | |
}, | |
"positionInBook": 1161 | |
}, | |
{ | |
"code": "630 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 196, | |
"b": 215 | |
}, | |
"positionInBook": 1162 | |
}, | |
{ | |
"code": "631 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 178, | |
"b": 203 | |
}, | |
"positionInBook": 1163 | |
}, | |
{ | |
"code": "632 U", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 152, | |
"b": 181 | |
}, | |
"positionInBook": 1164 | |
}, | |
{ | |
"code": "633 U", | |
"name": null, | |
"rgb": { | |
"r": 39, | |
"g": 130, | |
"b": 158 | |
}, | |
"positionInBook": 1165 | |
}, | |
{ | |
"code": "634 U", | |
"name": null, | |
"rgb": { | |
"r": 34, | |
"g": 110, | |
"b": 138 | |
}, | |
"positionInBook": 1166 | |
}, | |
{ | |
"code": "310 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 208, | |
"b": 230 | |
}, | |
"positionInBook": 1167 | |
}, | |
{ | |
"code": "311 U", | |
"name": null, | |
"rgb": { | |
"r": 1, | |
"g": 190, | |
"b": 219 | |
}, | |
"positionInBook": 1168 | |
}, | |
{ | |
"code": "312 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 175, | |
"b": 208 | |
}, | |
"positionInBook": 1169 | |
}, | |
{ | |
"code": "313 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 141, | |
"b": 177 | |
}, | |
"positionInBook": 1170 | |
}, | |
{ | |
"code": "314 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 125, | |
"b": 153 | |
}, | |
"positionInBook": 1171 | |
}, | |
{ | |
"code": "315 U", | |
"name": null, | |
"rgb": { | |
"r": 31, | |
"g": 103, | |
"b": 121 | |
}, | |
"positionInBook": 1172 | |
}, | |
{ | |
"code": "316 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 90, | |
"b": 98 | |
}, | |
"positionInBook": 1173 | |
}, | |
{ | |
"code": "3105 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 206, | |
"b": 222 | |
}, | |
"positionInBook": 1174 | |
}, | |
{ | |
"code": "3115 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 191, | |
"b": 211 | |
}, | |
"positionInBook": 1175 | |
}, | |
{ | |
"code": "3125 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 171, | |
"b": 194 | |
}, | |
"positionInBook": 1176 | |
}, | |
{ | |
"code": "3135 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 142, | |
"b": 166 | |
}, | |
"positionInBook": 1177 | |
}, | |
{ | |
"code": "3145 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 136 | |
}, | |
"positionInBook": 1178 | |
}, | |
{ | |
"code": "3155 U", | |
"name": null, | |
"rgb": { | |
"r": 27, | |
"g": 104, | |
"b": 117 | |
}, | |
"positionInBook": 1179 | |
}, | |
{ | |
"code": "3165 U", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 92, | |
"b": 102 | |
}, | |
"positionInBook": 1180 | |
}, | |
{ | |
"code": "7709 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 178, | |
"b": 189 | |
}, | |
"positionInBook": 1181 | |
}, | |
{ | |
"code": "7710 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 171, | |
"b": 184 | |
}, | |
"positionInBook": 1182 | |
}, | |
{ | |
"code": "7711 U", | |
"name": null, | |
"rgb": { | |
"r": 23, | |
"g": 157, | |
"b": 171 | |
}, | |
"positionInBook": 1183 | |
}, | |
{ | |
"code": "7712 U", | |
"name": null, | |
"rgb": { | |
"r": 34, | |
"g": 139, | |
"b": 157 | |
}, | |
"positionInBook": 1184 | |
}, | |
{ | |
"code": "7713 U", | |
"name": null, | |
"rgb": { | |
"r": 45, | |
"g": 134, | |
"b": 146 | |
}, | |
"positionInBook": 1185 | |
}, | |
{ | |
"code": "7714 U", | |
"name": null, | |
"rgb": { | |
"r": 53, | |
"g": 129, | |
"b": 137 | |
}, | |
"positionInBook": 1186 | |
}, | |
{ | |
"code": "7715 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 113, | |
"b": 120 | |
}, | |
"positionInBook": 1187 | |
}, | |
{ | |
"code": "2218 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 177, | |
"b": 190 | |
}, | |
"positionInBook": 1188 | |
}, | |
{ | |
"code": "2219 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 165, | |
"b": 180 | |
}, | |
"positionInBook": 1189 | |
}, | |
{ | |
"code": "2220 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 155, | |
"b": 171 | |
}, | |
"positionInBook": 1190 | |
}, | |
{ | |
"code": "2221 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 145, | |
"b": 161 | |
}, | |
"positionInBook": 1191 | |
}, | |
{ | |
"code": "2222 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 137, | |
"b": 154 | |
}, | |
"positionInBook": 1192 | |
}, | |
{ | |
"code": "2223 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 128, | |
"b": 145 | |
}, | |
"positionInBook": 1193 | |
}, | |
{ | |
"code": "2224 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 117, | |
"b": 134 | |
}, | |
"positionInBook": 1194 | |
}, | |
{ | |
"code": "317 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 233, | |
"b": 232 | |
}, | |
"positionInBook": 1195 | |
}, | |
{ | |
"code": "318 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 217, | |
"b": 222 | |
}, | |
"positionInBook": 1196 | |
}, | |
{ | |
"code": "319 U", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 201, | |
"b": 208 | |
}, | |
"positionInBook": 1197 | |
}, | |
{ | |
"code": "320 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 157, | |
"b": 165 | |
}, | |
"positionInBook": 1198 | |
}, | |
{ | |
"code": "321 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 131, | |
"b": 138 | |
}, | |
"positionInBook": 1199 | |
}, | |
{ | |
"code": "322 U", | |
"name": null, | |
"rgb": { | |
"r": 22, | |
"g": 115, | |
"b": 120 | |
}, | |
"positionInBook": 1200 | |
}, | |
{ | |
"code": "323 U", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 97, | |
"b": 101 | |
}, | |
"positionInBook": 1201 | |
}, | |
{ | |
"code": "2225 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 217, | |
"b": 229 | |
}, | |
"positionInBook": 1202 | |
}, | |
{ | |
"code": "2226 U", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 205, | |
"b": 221 | |
}, | |
"positionInBook": 1203 | |
}, | |
{ | |
"code": "2227 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 192, | |
"b": 203 | |
}, | |
"positionInBook": 1204 | |
}, | |
{ | |
"code": "2228 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 168, | |
"b": 188 | |
}, | |
"positionInBook": 1205 | |
}, | |
{ | |
"code": "2229 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 158, | |
"b": 180 | |
}, | |
"positionInBook": 1206 | |
}, | |
{ | |
"code": "2230 U", | |
"name": null, | |
"rgb": { | |
"r": 25, | |
"g": 146, | |
"b": 164 | |
}, | |
"positionInBook": 1207 | |
}, | |
{ | |
"code": "2231 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 133, | |
"b": 151 | |
}, | |
"positionInBook": 1208 | |
}, | |
{ | |
"code": "7464 U", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 219, | |
"b": 215 | |
}, | |
"positionInBook": 1209 | |
}, | |
{ | |
"code": "7465 U", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 199, | |
"b": 181 | |
}, | |
"positionInBook": 1210 | |
}, | |
{ | |
"code": "7466 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 180, | |
"b": 188 | |
}, | |
"positionInBook": 1211 | |
}, | |
{ | |
"code": "7467 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 168, | |
"b": 176 | |
}, | |
"positionInBook": 1212 | |
}, | |
{ | |
"code": "7468 U", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 119, | |
"b": 147 | |
}, | |
"positionInBook": 1213 | |
}, | |
{ | |
"code": "7469 U", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 110, | |
"b": 137 | |
}, | |
"positionInBook": 1214 | |
}, | |
{ | |
"code": "7470 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 112, | |
"b": 131 | |
}, | |
"positionInBook": 1215 | |
}, | |
{ | |
"code": "7471 U", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 226, | |
"b": 216 | |
}, | |
"positionInBook": 1216 | |
}, | |
{ | |
"code": "7472 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 189, | |
"b": 185 | |
}, | |
"positionInBook": 1217 | |
}, | |
{ | |
"code": "7473 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 165, | |
"b": 154 | |
}, | |
"positionInBook": 1218 | |
}, | |
{ | |
"code": "7474 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 138, | |
"b": 148 | |
}, | |
"positionInBook": 1219 | |
}, | |
{ | |
"code": "7475 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 139, | |
"b": 141 | |
}, | |
"positionInBook": 1220 | |
}, | |
{ | |
"code": "7476 U", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 119, | |
"b": 123 | |
}, | |
"positionInBook": 1221 | |
}, | |
{ | |
"code": "7477 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 112, | |
"b": 121 | |
}, | |
"positionInBook": 1222 | |
}, | |
{ | |
"code": "2211 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 164, | |
"b": 172 | |
}, | |
"positionInBook": 1223 | |
}, | |
{ | |
"code": "2212 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 141, | |
"b": 151 | |
}, | |
"positionInBook": 1224 | |
}, | |
{ | |
"code": "2213 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 125, | |
"b": 132 | |
}, | |
"positionInBook": 1225 | |
}, | |
{ | |
"code": "2214 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 126, | |
"b": 135 | |
}, | |
"positionInBook": 1226 | |
}, | |
{ | |
"code": "2215 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 105, | |
"b": 116 | |
}, | |
"positionInBook": 1227 | |
}, | |
{ | |
"code": "2216 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 98, | |
"b": 106 | |
}, | |
"positionInBook": 1228 | |
}, | |
{ | |
"code": "2217 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 87, | |
"b": 94 | |
}, | |
"positionInBook": 1229 | |
}, | |
{ | |
"code": "5523 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 213, | |
"b": 214 | |
}, | |
"positionInBook": 1230 | |
}, | |
{ | |
"code": "5513 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 202, | |
"b": 205 | |
}, | |
"positionInBook": 1231 | |
}, | |
{ | |
"code": "5503 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 183, | |
"b": 188 | |
}, | |
"positionInBook": 1232 | |
}, | |
{ | |
"code": "5493 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 156, | |
"b": 163 | |
}, | |
"positionInBook": 1233 | |
}, | |
{ | |
"code": "5483 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 130, | |
"b": 137 | |
}, | |
"positionInBook": 1234 | |
}, | |
{ | |
"code": "5473 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 109, | |
"b": 117 | |
}, | |
"positionInBook": 1235 | |
}, | |
{ | |
"code": "5463 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 78, | |
"b": 86 | |
}, | |
"positionInBook": 1236 | |
}, | |
{ | |
"code": "2232 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 176, | |
"b": 181 | |
}, | |
"positionInBook": 1237 | |
}, | |
{ | |
"code": "2233 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 166, | |
"b": 174 | |
}, | |
"positionInBook": 1238 | |
}, | |
{ | |
"code": "2234 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 156, | |
"b": 162 | |
}, | |
"positionInBook": 1239 | |
}, | |
{ | |
"code": "2235 U", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 149, | |
"b": 157 | |
}, | |
"positionInBook": 1240 | |
}, | |
{ | |
"code": "2236 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 144, | |
"b": 151 | |
}, | |
"positionInBook": 1241 | |
}, | |
{ | |
"code": "2237 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 139, | |
"b": 145 | |
}, | |
"positionInBook": 1242 | |
}, | |
{ | |
"code": "2238 U", | |
"name": null, | |
"rgb": { | |
"r": 53, | |
"g": 117, | |
"b": 126 | |
}, | |
"positionInBook": 1243 | |
}, | |
{ | |
"code": "7716 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 153, | |
"b": 150 | |
}, | |
"positionInBook": 1244 | |
}, | |
{ | |
"code": "7717 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 142, | |
"b": 139 | |
}, | |
"positionInBook": 1245 | |
}, | |
{ | |
"code": "7718 U", | |
"name": null, | |
"rgb": { | |
"r": 53, | |
"g": 130, | |
"b": 130 | |
}, | |
"positionInBook": 1246 | |
}, | |
{ | |
"code": "7719 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 123, | |
"b": 123 | |
}, | |
"positionInBook": 1247 | |
}, | |
{ | |
"code": "7720 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 118, | |
"b": 117 | |
}, | |
"positionInBook": 1248 | |
}, | |
{ | |
"code": "7721 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 115, | |
"b": 117 | |
}, | |
"positionInBook": 1249 | |
}, | |
{ | |
"code": "7722 U", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 107, | |
"b": 110 | |
}, | |
"positionInBook": 1250 | |
}, | |
{ | |
"code": "324 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 216, | |
"b": 213 | |
}, | |
"positionInBook": 1251 | |
}, | |
{ | |
"code": "325 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 193, | |
"b": 187 | |
}, | |
"positionInBook": 1252 | |
}, | |
{ | |
"code": "326 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 170, | |
"b": 161 | |
}, | |
"positionInBook": 1253 | |
}, | |
{ | |
"code": "327 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 143, | |
"b": 133 | |
}, | |
"positionInBook": 1254 | |
}, | |
{ | |
"code": "328 U", | |
"name": null, | |
"rgb": { | |
"r": 19, | |
"g": 125, | |
"b": 121 | |
}, | |
"positionInBook": 1255 | |
}, | |
{ | |
"code": "329 U", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 117, | |
"b": 114 | |
}, | |
"positionInBook": 1256 | |
}, | |
{ | |
"code": "330 U", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 100, | |
"b": 99 | |
}, | |
"positionInBook": 1257 | |
}, | |
{ | |
"code": "3242 U", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 219, | |
"b": 211 | |
}, | |
"positionInBook": 1258 | |
}, | |
{ | |
"code": "3252 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 205, | |
"b": 194 | |
}, | |
"positionInBook": 1259 | |
}, | |
{ | |
"code": "3262 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 186, | |
"b": 174 | |
}, | |
"positionInBook": 1260 | |
}, | |
{ | |
"code": "3272 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 164, | |
"b": 154 | |
}, | |
"positionInBook": 1261 | |
}, | |
{ | |
"code": "3282 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 128 | |
}, | |
"positionInBook": 1262 | |
}, | |
{ | |
"code": "3292 U", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 110, | |
"b": 106 | |
}, | |
"positionInBook": 1263 | |
}, | |
{ | |
"code": "3302 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 97, | |
"b": 95 | |
}, | |
"positionInBook": 1264 | |
}, | |
{ | |
"code": "2397 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 179, | |
"b": 184 | |
}, | |
"positionInBook": 1265 | |
}, | |
{ | |
"code": "2398 U", | |
"name": null, | |
"rgb": { | |
"r": 50, | |
"g": 190, | |
"b": 183 | |
}, | |
"positionInBook": 1266 | |
}, | |
{ | |
"code": "2399 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 176, | |
"b": 165 | |
}, | |
"positionInBook": 1267 | |
}, | |
{ | |
"code": "2400 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 177, | |
"b": 153 | |
}, | |
"positionInBook": 1268 | |
}, | |
{ | |
"code": "2401 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 168, | |
"b": 155 | |
}, | |
"positionInBook": 1269 | |
}, | |
{ | |
"code": "2402 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 160, | |
"b": 140 | |
}, | |
"positionInBook": 1270 | |
}, | |
{ | |
"code": "2403 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 144, | |
"b": 132 | |
}, | |
"positionInBook": 1271 | |
}, | |
{ | |
"code": "3245 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 220, | |
"b": 202 | |
}, | |
"positionInBook": 1272 | |
}, | |
{ | |
"code": "3255 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 207, | |
"b": 187 | |
}, | |
"positionInBook": 1273 | |
}, | |
{ | |
"code": "3265 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 192, | |
"b": 170 | |
}, | |
"positionInBook": 1274 | |
}, | |
{ | |
"code": "3275 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 170, | |
"b": 147 | |
}, | |
"positionInBook": 1275 | |
}, | |
{ | |
"code": "3285 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 144, | |
"b": 129 | |
}, | |
"positionInBook": 1276 | |
}, | |
{ | |
"code": "3295 U", | |
"name": null, | |
"rgb": { | |
"r": 35, | |
"g": 126, | |
"b": 116 | |
}, | |
"positionInBook": 1277 | |
}, | |
{ | |
"code": "3305 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 105, | |
"b": 100 | |
}, | |
"positionInBook": 1278 | |
}, | |
{ | |
"code": "3248 U", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 206, | |
"b": 185 | |
}, | |
"positionInBook": 1279 | |
}, | |
{ | |
"code": "3258 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 193, | |
"b": 172 | |
}, | |
"positionInBook": 1280 | |
}, | |
{ | |
"code": "3268 U", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 178, | |
"b": 154 | |
}, | |
"positionInBook": 1281 | |
}, | |
{ | |
"code": "3278 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 156, | |
"b": 130 | |
}, | |
"positionInBook": 1282 | |
}, | |
{ | |
"code": "3288 U", | |
"name": null, | |
"rgb": { | |
"r": 32, | |
"g": 135, | |
"b": 118 | |
}, | |
"positionInBook": 1283 | |
}, | |
{ | |
"code": "3298 U", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 116, | |
"b": 105 | |
}, | |
"positionInBook": 1284 | |
}, | |
{ | |
"code": "3308 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 97, | |
"b": 91 | |
}, | |
"positionInBook": 1285 | |
}, | |
{ | |
"code": "566 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 225, | |
"b": 214 | |
}, | |
"positionInBook": 1286 | |
}, | |
{ | |
"code": "565 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 209, | |
"b": 197 | |
}, | |
"positionInBook": 1287 | |
}, | |
{ | |
"code": "564 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 198, | |
"b": 188 | |
}, | |
"positionInBook": 1288 | |
}, | |
{ | |
"code": "563 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 185, | |
"b": 175 | |
}, | |
"positionInBook": 1289 | |
}, | |
{ | |
"code": "562 U", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 128, | |
"b": 122 | |
}, | |
"positionInBook": 1290 | |
}, | |
{ | |
"code": "561 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 109, | |
"b": 104 | |
}, | |
"positionInBook": 1291 | |
}, | |
{ | |
"code": "560 U", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 94, | |
"b": 91 | |
}, | |
"positionInBook": 1292 | |
}, | |
{ | |
"code": "573 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 233, | |
"b": 222 | |
}, | |
"positionInBook": 1293 | |
}, | |
{ | |
"code": "572 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 222, | |
"b": 207 | |
}, | |
"positionInBook": 1294 | |
}, | |
{ | |
"code": "571 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 216, | |
"b": 200 | |
}, | |
"positionInBook": 1295 | |
}, | |
{ | |
"code": "570 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 194, | |
"b": 177 | |
}, | |
"positionInBook": 1296 | |
}, | |
{ | |
"code": "569 U", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 143, | |
"b": 130 | |
}, | |
"positionInBook": 1297 | |
}, | |
{ | |
"code": "568 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 128, | |
"b": 117 | |
}, | |
"positionInBook": 1298 | |
}, | |
{ | |
"code": "567 U", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 99, | |
"b": 93 | |
}, | |
"positionInBook": 1299 | |
}, | |
{ | |
"code": "559 U", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 209, | |
"b": 192 | |
}, | |
"positionInBook": 1300 | |
}, | |
{ | |
"code": "558 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 192, | |
"b": 174 | |
}, | |
"positionInBook": 1301 | |
}, | |
{ | |
"code": "557 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 178, | |
"b": 159 | |
}, | |
"positionInBook": 1302 | |
}, | |
{ | |
"code": "556 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 158, | |
"b": 139 | |
}, | |
"positionInBook": 1303 | |
}, | |
{ | |
"code": "555 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 126, | |
"b": 106 | |
}, | |
"positionInBook": 1304 | |
}, | |
{ | |
"code": "554 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 117, | |
"b": 101 | |
}, | |
"positionInBook": 1305 | |
}, | |
{ | |
"code": "553 U", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 104, | |
"b": 93 | |
}, | |
"positionInBook": 1306 | |
}, | |
{ | |
"code": "2404 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 180, | |
"b": 155 | |
}, | |
"positionInBook": 1307 | |
}, | |
{ | |
"code": "2406 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 161, | |
"b": 144 | |
}, | |
"positionInBook": 1308 | |
}, | |
{ | |
"code": "2407 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 146, | |
"b": 129 | |
}, | |
"positionInBook": 1309 | |
}, | |
{ | |
"code": "2408 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 122, | |
"b": 102 | |
}, | |
"positionInBook": 1310 | |
}, | |
{ | |
"code": "2409 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 116, | |
"b": 101 | |
}, | |
"positionInBook": 1311 | |
}, | |
{ | |
"code": "2410 U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 112, | |
"b": 96 | |
}, | |
"positionInBook": 1312 | |
}, | |
{ | |
"code": "2411 U", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 98, | |
"b": 75 | |
}, | |
"positionInBook": 1313 | |
}, | |
{ | |
"code": "5595 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 210, | |
"b": 199 | |
}, | |
"positionInBook": 1314 | |
}, | |
{ | |
"code": "5585 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 185, | |
"b": 175 | |
}, | |
"positionInBook": 1315 | |
}, | |
{ | |
"code": "5575 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 180, | |
"b": 171 | |
}, | |
"positionInBook": 1316 | |
}, | |
{ | |
"code": "5565 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 162, | |
"b": 154 | |
}, | |
"positionInBook": 1317 | |
}, | |
{ | |
"code": "5555 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 142, | |
"b": 135 | |
}, | |
"positionInBook": 1318 | |
}, | |
{ | |
"code": "5545 U", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 118, | |
"b": 111 | |
}, | |
"positionInBook": 1319 | |
}, | |
{ | |
"code": "5535 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 89, | |
"b": 86 | |
}, | |
"positionInBook": 1320 | |
}, | |
{ | |
"code": "5665 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 200, | |
"b": 189 | |
}, | |
"positionInBook": 1321 | |
}, | |
{ | |
"code": "5655 U", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 192, | |
"b": 181 | |
}, | |
"positionInBook": 1322 | |
}, | |
{ | |
"code": "5645 U", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 175, | |
"b": 165 | |
}, | |
"positionInBook": 1323 | |
}, | |
{ | |
"code": "5635 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 157, | |
"b": 148 | |
}, | |
"positionInBook": 1324 | |
}, | |
{ | |
"code": "5625 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 137, | |
"b": 129 | |
}, | |
"positionInBook": 1325 | |
}, | |
{ | |
"code": "5615 U", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 121, | |
"b": 112 | |
}, | |
"positionInBook": 1326 | |
}, | |
{ | |
"code": "5605 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 105, | |
"b": 94 | |
}, | |
"positionInBook": 1327 | |
}, | |
{ | |
"code": "5527 U", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 199, | |
"b": 196 | |
}, | |
"positionInBook": 1328 | |
}, | |
{ | |
"code": "5517 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 186, | |
"b": 183 | |
}, | |
"positionInBook": 1329 | |
}, | |
{ | |
"code": "5507 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 169, | |
"b": 167 | |
}, | |
"positionInBook": 1330 | |
}, | |
{ | |
"code": "5497 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 149, | |
"b": 149 | |
}, | |
"positionInBook": 1331 | |
}, | |
{ | |
"code": "5487 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 124, | |
"b": 125 | |
}, | |
"positionInBook": 1332 | |
}, | |
{ | |
"code": "5477 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 112, | |
"b": 112 | |
}, | |
"positionInBook": 1333 | |
}, | |
{ | |
"code": "5467 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 95, | |
"b": 95 | |
}, | |
"positionInBook": 1334 | |
}, | |
{ | |
"code": "621 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 223, | |
"b": 212 | |
}, | |
"positionInBook": 1335 | |
}, | |
{ | |
"code": "622 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 204, | |
"b": 192 | |
}, | |
"positionInBook": 1336 | |
}, | |
{ | |
"code": "623 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 181, | |
"b": 171 | |
}, | |
"positionInBook": 1337 | |
}, | |
{ | |
"code": "624 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 161, | |
"b": 152 | |
}, | |
"positionInBook": 1338 | |
}, | |
{ | |
"code": "625 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 138, | |
"b": 130 | |
}, | |
"positionInBook": 1339 | |
}, | |
{ | |
"code": "626 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 117, | |
"b": 111 | |
}, | |
"positionInBook": 1340 | |
}, | |
{ | |
"code": "627 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 93, | |
"b": 88 | |
}, | |
"positionInBook": 1341 | |
}, | |
{ | |
"code": "331 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 232, | |
"b": 211 | |
}, | |
"positionInBook": 1342 | |
}, | |
{ | |
"code": "332 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 226, | |
"b": 203 | |
}, | |
"positionInBook": 1343 | |
}, | |
{ | |
"code": "333 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 210, | |
"b": 179 | |
}, | |
"positionInBook": 1344 | |
}, | |
{ | |
"code": "Green U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 172, | |
"b": 140 | |
}, | |
"positionInBook": 1345 | |
}, | |
{ | |
"code": "334 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 149, | |
"b": 126 | |
}, | |
"positionInBook": 1346 | |
}, | |
{ | |
"code": "335 U", | |
"name": null, | |
"rgb": { | |
"r": 36, | |
"g": 126, | |
"b": 111 | |
}, | |
"positionInBook": 1347 | |
}, | |
{ | |
"code": "336 U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 114, | |
"b": 103 | |
}, | |
"positionInBook": 1348 | |
}, | |
{ | |
"code": "2239 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 209, | |
"b": 182 | |
}, | |
"positionInBook": 1349 | |
}, | |
{ | |
"code": "2240 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 194, | |
"b": 162 | |
}, | |
"positionInBook": 1350 | |
}, | |
{ | |
"code": "2241 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 161, | |
"b": 148 | |
}, | |
"positionInBook": 1351 | |
}, | |
{ | |
"code": "2242 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 163, | |
"b": 128 | |
}, | |
"positionInBook": 1352 | |
}, | |
{ | |
"code": "2243 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 150, | |
"b": 131 | |
}, | |
"positionInBook": 1353 | |
}, | |
{ | |
"code": "2244 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 135, | |
"b": 123 | |
}, | |
"positionInBook": 1354 | |
}, | |
{ | |
"code": "2245 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 141, | |
"b": 108 | |
}, | |
"positionInBook": 1355 | |
}, | |
{ | |
"code": "337 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 213, | |
"b": 186 | |
}, | |
"positionInBook": 1356 | |
}, | |
{ | |
"code": "338 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 193, | |
"b": 161 | |
}, | |
"positionInBook": 1357 | |
}, | |
{ | |
"code": "339 U", | |
"name": null, | |
"rgb": { | |
"r": 33, | |
"g": 174, | |
"b": 138 | |
}, | |
"positionInBook": 1358 | |
}, | |
{ | |
"code": "340 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 158, | |
"b": 119 | |
}, | |
"positionInBook": 1359 | |
}, | |
{ | |
"code": "341 U", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 121, | |
"b": 99 | |
}, | |
"positionInBook": 1360 | |
}, | |
{ | |
"code": "342 U", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 112, | |
"b": 96 | |
}, | |
"positionInBook": 1361 | |
}, | |
{ | |
"code": "343 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 101, | |
"b": 91 | |
}, | |
"positionInBook": 1362 | |
}, | |
{ | |
"code": "7723 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 172, | |
"b": 146 | |
}, | |
"positionInBook": 1363 | |
}, | |
{ | |
"code": "7724 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 155, | |
"b": 128 | |
}, | |
"positionInBook": 1364 | |
}, | |
{ | |
"code": "7725 U", | |
"name": null, | |
"rgb": { | |
"r": 55, | |
"g": 146, | |
"b": 114 | |
}, | |
"positionInBook": 1365 | |
}, | |
{ | |
"code": "7726 U", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 133, | |
"b": 105 | |
}, | |
"positionInBook": 1366 | |
}, | |
{ | |
"code": "7727 U", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 124, | |
"b": 101 | |
}, | |
"positionInBook": 1367 | |
}, | |
{ | |
"code": "7728 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 120, | |
"b": 101 | |
}, | |
"positionInBook": 1368 | |
}, | |
{ | |
"code": "7729 U", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 111, | |
"b": 103 | |
}, | |
"positionInBook": 1369 | |
}, | |
{ | |
"code": "3375 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 224, | |
"b": 183 | |
}, | |
"positionInBook": 1370 | |
}, | |
{ | |
"code": "3385 U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 212, | |
"b": 167 | |
}, | |
"positionInBook": 1371 | |
}, | |
{ | |
"code": "3395 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 199, | |
"b": 149 | |
}, | |
"positionInBook": 1372 | |
}, | |
{ | |
"code": "3405 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 178, | |
"b": 122 | |
}, | |
"positionInBook": 1373 | |
}, | |
{ | |
"code": "3415 U", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 129, | |
"b": 103 | |
}, | |
"positionInBook": 1374 | |
}, | |
{ | |
"code": "3425 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 119, | |
"b": 100 | |
}, | |
"positionInBook": 1375 | |
}, | |
{ | |
"code": "3435 U", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 102, | |
"b": 91 | |
}, | |
"positionInBook": 1376 | |
}, | |
{ | |
"code": "2246 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 217, | |
"b": 188 | |
}, | |
"positionInBook": 1377 | |
}, | |
{ | |
"code": "2247 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 198, | |
"b": 160 | |
}, | |
"positionInBook": 1378 | |
}, | |
{ | |
"code": "2248 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 187, | |
"b": 151 | |
}, | |
"positionInBook": 1379 | |
}, | |
{ | |
"code": "2249 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 172, | |
"b": 136 | |
}, | |
"positionInBook": 1380 | |
}, | |
{ | |
"code": "2250 U", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 177, | |
"b": 123 | |
}, | |
"positionInBook": 1381 | |
}, | |
{ | |
"code": "2251 U", | |
"name": null, | |
"rgb": { | |
"r": 11, | |
"g": 170, | |
"b": 120 | |
}, | |
"positionInBook": 1382 | |
}, | |
{ | |
"code": "2252 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 170, | |
"b": 99 | |
}, | |
"positionInBook": 1383 | |
}, | |
{ | |
"code": "2412 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 218, | |
"b": 161 | |
}, | |
"positionInBook": 1384 | |
}, | |
{ | |
"code": "2413 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 177, | |
"b": 142 | |
}, | |
"positionInBook": 1385 | |
}, | |
{ | |
"code": "2414 U", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 180, | |
"b": 128 | |
}, | |
"positionInBook": 1386 | |
}, | |
{ | |
"code": "2416 U", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 177, | |
"b": 129 | |
}, | |
"positionInBook": 1387 | |
}, | |
{ | |
"code": "2417 U", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 158, | |
"b": 122 | |
}, | |
"positionInBook": 1388 | |
}, | |
{ | |
"code": "2418 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 89 | |
}, | |
"positionInBook": 1389 | |
}, | |
{ | |
"code": "2419 U", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 125, | |
"b": 104 | |
}, | |
"positionInBook": 1390 | |
}, | |
{ | |
"code": "344 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 216, | |
"b": 172 | |
}, | |
"positionInBook": 1391 | |
}, | |
{ | |
"code": "345 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 205, | |
"b": 156 | |
}, | |
"positionInBook": 1392 | |
}, | |
{ | |
"code": "346 U", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 189, | |
"b": 136 | |
}, | |
"positionInBook": 1393 | |
}, | |
{ | |
"code": "347 U", | |
"name": null, | |
"rgb": { | |
"r": 22, | |
"g": 155, | |
"b": 98 | |
}, | |
"positionInBook": 1394 | |
}, | |
{ | |
"code": "348 U", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 133, | |
"b": 91 | |
}, | |
"positionInBook": 1395 | |
}, | |
{ | |
"code": "349 U", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 114, | |
"b": 88 | |
}, | |
"positionInBook": 1396 | |
}, | |
{ | |
"code": "350 U", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 103, | |
"b": 88 | |
}, | |
"positionInBook": 1397 | |
}, | |
{ | |
"code": "351 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 230, | |
"b": 180 | |
}, | |
"positionInBook": 1398 | |
}, | |
{ | |
"code": "352 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 224, | |
"b": 163 | |
}, | |
"positionInBook": 1399 | |
}, | |
{ | |
"code": "353 U", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 214, | |
"b": 145 | |
}, | |
"positionInBook": 1400 | |
}, | |
{ | |
"code": "354 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 169, | |
"b": 92 | |
}, | |
"positionInBook": 1401 | |
}, | |
{ | |
"code": "355 U", | |
"name": null, | |
"rgb": { | |
"r": 24, | |
"g": 151, | |
"b": 94 | |
}, | |
"positionInBook": 1402 | |
}, | |
{ | |
"code": "356 U", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 126, | |
"b": 88 | |
}, | |
"positionInBook": 1403 | |
}, | |
{ | |
"code": "357 U", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 110, | |
"b": 90 | |
}, | |
"positionInBook": 1404 | |
}, | |
{ | |
"code": "7478 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 234, | |
"b": 197 | |
}, | |
"positionInBook": 1405 | |
}, | |
{ | |
"code": "7479 U", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 203, | |
"b": 126 | |
}, | |
"positionInBook": 1406 | |
}, | |
{ | |
"code": "7480 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 194, | |
"b": 129 | |
}, | |
"positionInBook": 1407 | |
}, | |
{ | |
"code": "7481 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 186, | |
"b": 110 | |
}, | |
"positionInBook": 1408 | |
}, | |
{ | |
"code": "7482 U", | |
"name": null, | |
"rgb": { | |
"r": 39, | |
"g": 167, | |
"b": 112 | |
}, | |
"positionInBook": 1409 | |
}, | |
{ | |
"code": "7483 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 119, | |
"b": 98 | |
}, | |
"positionInBook": 1410 | |
}, | |
{ | |
"code": "7484 U", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 110, | |
"b": 96 | |
}, | |
"positionInBook": 1411 | |
}, | |
{ | |
"code": "2253 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 241, | |
"b": 207 | |
}, | |
"positionInBook": 1412 | |
}, | |
{ | |
"code": "2254 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 228, | |
"b": 181 | |
}, | |
"positionInBook": 1413 | |
}, | |
{ | |
"code": "2255 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 215, | |
"b": 155 | |
}, | |
"positionInBook": 1414 | |
}, | |
{ | |
"code": "2256 U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 198, | |
"b": 128 | |
}, | |
"positionInBook": 1415 | |
}, | |
{ | |
"code": "2257 U", | |
"name": null, | |
"rgb": { | |
"r": 55, | |
"g": 173, | |
"b": 104 | |
}, | |
"positionInBook": 1416 | |
}, | |
{ | |
"code": "2258 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 146, | |
"b": 83 | |
}, | |
"positionInBook": 1417 | |
}, | |
{ | |
"code": "2259 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 130, | |
"b": 81 | |
}, | |
"positionInBook": 1418 | |
}, | |
{ | |
"code": "7730 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 156, | |
"b": 122 | |
}, | |
"positionInBook": 1419 | |
}, | |
{ | |
"code": "7731 U", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 146, | |
"b": 107 | |
}, | |
"positionInBook": 1420 | |
}, | |
{ | |
"code": "7732 U", | |
"name": null, | |
"rgb": { | |
"r": 73, | |
"g": 133, | |
"b": 100 | |
}, | |
"positionInBook": 1421 | |
}, | |
{ | |
"code": "7733 U", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 124, | |
"b": 99 | |
}, | |
"positionInBook": 1422 | |
}, | |
{ | |
"code": "7734 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 119, | |
"b": 101 | |
}, | |
"positionInBook": 1423 | |
}, | |
{ | |
"code": "7735 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 113, | |
"b": 99 | |
}, | |
"positionInBook": 1424 | |
}, | |
{ | |
"code": "7736 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 107, | |
"b": 98 | |
}, | |
"positionInBook": 1425 | |
}, | |
{ | |
"code": "7737 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 172, | |
"b": 102 | |
}, | |
"positionInBook": 1426 | |
}, | |
{ | |
"code": "7738 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 169, | |
"b": 105 | |
}, | |
"positionInBook": 1427 | |
}, | |
{ | |
"code": "7739 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 163, | |
"b": 105 | |
}, | |
"positionInBook": 1428 | |
}, | |
{ | |
"code": "7740 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 152, | |
"b": 101 | |
}, | |
"positionInBook": 1429 | |
}, | |
{ | |
"code": "7741 U", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 146, | |
"b": 103 | |
}, | |
"positionInBook": 1430 | |
}, | |
{ | |
"code": "7742 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 133, | |
"b": 100 | |
}, | |
"positionInBook": 1431 | |
}, | |
{ | |
"code": "7743 U", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 116, | |
"b": 93 | |
}, | |
"positionInBook": 1432 | |
}, | |
{ | |
"code": "2260 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 219, | |
"b": 188 | |
}, | |
"positionInBook": 1433 | |
}, | |
{ | |
"code": "2261 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 184, | |
"b": 143 | |
}, | |
"positionInBook": 1434 | |
}, | |
{ | |
"code": "2262 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 173, | |
"b": 142 | |
}, | |
"positionInBook": 1435 | |
}, | |
{ | |
"code": "2263 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 154, | |
"b": 123 | |
}, | |
"positionInBook": 1436 | |
}, | |
{ | |
"code": "2264 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 152, | |
"b": 112 | |
}, | |
"positionInBook": 1437 | |
}, | |
{ | |
"code": "2265 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 143, | |
"b": 112 | |
}, | |
"positionInBook": 1438 | |
}, | |
{ | |
"code": "2266 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 120, | |
"b": 85 | |
}, | |
"positionInBook": 1439 | |
}, | |
{ | |
"code": "358 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 216, | |
"b": 138 | |
}, | |
"positionInBook": 1440 | |
}, | |
{ | |
"code": "359 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 205, | |
"b": 119 | |
}, | |
"positionInBook": 1441 | |
}, | |
{ | |
"code": "360 U", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 184, | |
"b": 96 | |
}, | |
"positionInBook": 1442 | |
}, | |
{ | |
"code": "361 U", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 170, | |
"b": 80 | |
}, | |
"positionInBook": 1443 | |
}, | |
{ | |
"code": "362 U", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 148, | |
"b": 79 | |
}, | |
"positionInBook": 1444 | |
}, | |
{ | |
"code": "363 U", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 133, | |
"b": 78 | |
}, | |
"positionInBook": 1445 | |
}, | |
{ | |
"code": "364 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 121, | |
"b": 78 | |
}, | |
"positionInBook": 1446 | |
}, | |
{ | |
"code": "2267 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 232, | |
"b": 159 | |
}, | |
"positionInBook": 1447 | |
}, | |
{ | |
"code": "2268 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 221, | |
"b": 132 | |
}, | |
"positionInBook": 1448 | |
}, | |
{ | |
"code": "2269 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 201, | |
"b": 115 | |
}, | |
"positionInBook": 1449 | |
}, | |
{ | |
"code": "2270 U", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 202, | |
"b": 103 | |
}, | |
"positionInBook": 1450 | |
}, | |
{ | |
"code": "2271 U", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 189, | |
"b": 89 | |
}, | |
"positionInBook": 1451 | |
}, | |
{ | |
"code": "2272 U", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 162, | |
"b": 72 | |
}, | |
"positionInBook": 1452 | |
}, | |
{ | |
"code": "2273 U", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 125, | |
"b": 79 | |
}, | |
"positionInBook": 1453 | |
}, | |
{ | |
"code": "2420 U", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 199, | |
"b": 116 | |
}, | |
"positionInBook": 1454 | |
}, | |
{ | |
"code": "2421 U", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 185, | |
"b": 56 | |
}, | |
"positionInBook": 1455 | |
}, | |
{ | |
"code": "2422 U", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 168, | |
"b": 87 | |
}, | |
"positionInBook": 1456 | |
}, | |
{ | |
"code": "2423 U", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 173, | |
"b": 74 | |
}, | |
"positionInBook": 1457 | |
}, | |
{ | |
"code": "2424 U", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 164, | |
"b": 58 | |
}, | |
"positionInBook": 1458 | |
}, | |
{ | |
"code": "2426 U", | |
"name": null, | |
"rgb": { | |
"r": 18, | |
"g": 148, | |
"b": 71 | |
}, | |
"positionInBook": 1459 | |
}, | |
{ | |
"code": "2427 U", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 114, | |
"b": 75 | |
}, | |
"positionInBook": 1460 | |
}, | |
{ | |
"code": "7485 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 228, | |
"b": 192 | |
}, | |
"positionInBook": 1461 | |
}, | |
{ | |
"code": "7486 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 227, | |
"b": 148 | |
}, | |
"positionInBook": 1462 | |
}, | |
{ | |
"code": "7487 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 224, | |
"b": 118 | |
}, | |
"positionInBook": 1463 | |
}, | |
{ | |
"code": "7488 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 208, | |
"b": 90 | |
}, | |
"positionInBook": 1464 | |
}, | |
{ | |
"code": "7489 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 171, | |
"b": 109 | |
}, | |
"positionInBook": 1465 | |
}, | |
{ | |
"code": "7490 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 158, | |
"b": 107 | |
}, | |
"positionInBook": 1466 | |
}, | |
{ | |
"code": "7491 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 140, | |
"b": 97 | |
}, | |
"positionInBook": 1467 | |
}, | |
{ | |
"code": "2274 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 225, | |
"b": 181 | |
}, | |
"positionInBook": 1468 | |
}, | |
{ | |
"code": "2275 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 226, | |
"b": 153 | |
}, | |
"positionInBook": 1469 | |
}, | |
{ | |
"code": "2276 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 168, | |
"b": 104 | |
}, | |
"positionInBook": 1470 | |
}, | |
{ | |
"code": "2277 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 154, | |
"b": 71 | |
}, | |
"positionInBook": 1471 | |
}, | |
{ | |
"code": "2278 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 140, | |
"b": 74 | |
}, | |
"positionInBook": 1472 | |
}, | |
{ | |
"code": "2279 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 134, | |
"b": 83 | |
}, | |
"positionInBook": 1473 | |
}, | |
{ | |
"code": "2280 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 123, | |
"b": 76 | |
}, | |
"positionInBook": 1474 | |
}, | |
{ | |
"code": "365 U", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 230, | |
"b": 146 | |
}, | |
"positionInBook": 1475 | |
}, | |
{ | |
"code": "366 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 220, | |
"b": 125 | |
}, | |
"positionInBook": 1476 | |
}, | |
{ | |
"code": "367 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 209, | |
"b": 106 | |
}, | |
"positionInBook": 1477 | |
}, | |
{ | |
"code": "368 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 179, | |
"b": 70 | |
}, | |
"positionInBook": 1478 | |
}, | |
{ | |
"code": "369 U", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 160, | |
"b": 68 | |
}, | |
"positionInBook": 1479 | |
}, | |
{ | |
"code": "370 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 138, | |
"b": 72 | |
}, | |
"positionInBook": 1480 | |
}, | |
{ | |
"code": "371 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 114, | |
"b": 77 | |
}, | |
"positionInBook": 1481 | |
}, | |
{ | |
"code": "2281 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 239, | |
"b": 153 | |
}, | |
"positionInBook": 1482 | |
}, | |
{ | |
"code": "2282 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 239, | |
"b": 151 | |
}, | |
"positionInBook": 1483 | |
}, | |
{ | |
"code": "2283 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 230, | |
"b": 117 | |
}, | |
"positionInBook": 1484 | |
}, | |
{ | |
"code": "2284 U", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 216, | |
"b": 132 | |
}, | |
"positionInBook": 1485 | |
}, | |
{ | |
"code": "2285 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 222, | |
"b": 99 | |
}, | |
"positionInBook": 1486 | |
}, | |
{ | |
"code": "2286 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 211, | |
"b": 70 | |
}, | |
"positionInBook": 1487 | |
}, | |
{ | |
"code": "2287 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 200, | |
"b": 71 | |
}, | |
"positionInBook": 1488 | |
}, | |
{ | |
"code": "372 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 240, | |
"b": 143 | |
}, | |
"positionInBook": 1489 | |
}, | |
{ | |
"code": "373 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 233, | |
"b": 114 | |
}, | |
"positionInBook": 1490 | |
}, | |
{ | |
"code": "374 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 227, | |
"b": 95 | |
}, | |
"positionInBook": 1491 | |
}, | |
{ | |
"code": "375 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 201, | |
"b": 45 | |
}, | |
"positionInBook": 1492 | |
}, | |
{ | |
"code": "376 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 171, | |
"b": 55 | |
}, | |
"positionInBook": 1493 | |
}, | |
{ | |
"code": "377 U", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 143, | |
"b": 65 | |
}, | |
"positionInBook": 1494 | |
}, | |
{ | |
"code": "378 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 123, | |
"b": 77 | |
}, | |
"positionInBook": 1495 | |
}, | |
{ | |
"code": "2288 U", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 232, | |
"b": 130 | |
}, | |
"positionInBook": 1496 | |
}, | |
{ | |
"code": "2289 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 221, | |
"b": 132 | |
}, | |
"positionInBook": 1497 | |
}, | |
{ | |
"code": "2290 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 225, | |
"b": 82 | |
}, | |
"positionInBook": 1498 | |
}, | |
{ | |
"code": "2291 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 218, | |
"b": 54 | |
}, | |
"positionInBook": 1499 | |
}, | |
{ | |
"code": "2292 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 201, | |
"b": 71 | |
}, | |
"positionInBook": 1500 | |
}, | |
{ | |
"code": "2293 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 203, | |
"b": 36 | |
}, | |
"positionInBook": 1501 | |
}, | |
{ | |
"code": "2294 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 177, | |
"b": 60 | |
}, | |
"positionInBook": 1502 | |
}, | |
{ | |
"code": "2295 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 242, | |
"b": 140 | |
}, | |
"positionInBook": 1503 | |
}, | |
{ | |
"code": "2296 U", | |
"name": null, | |
"rgb": { | |
"r": 217, | |
"g": 238, | |
"b": 112 | |
}, | |
"positionInBook": 1504 | |
}, | |
{ | |
"code": "2297 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 229, | |
"b": 78 | |
}, | |
"positionInBook": 1505 | |
}, | |
{ | |
"code": "2298 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 221, | |
"b": 101 | |
}, | |
"positionInBook": 1506 | |
}, | |
{ | |
"code": "2299 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 211, | |
"b": 84 | |
}, | |
"positionInBook": 1507 | |
}, | |
{ | |
"code": "2300 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 199, | |
"b": 99 | |
}, | |
"positionInBook": 1508 | |
}, | |
{ | |
"code": "2301 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 174, | |
"b": 79 | |
}, | |
"positionInBook": 1509 | |
}, | |
{ | |
"code": "580 U", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 220, | |
"b": 172 | |
}, | |
"positionInBook": 1510 | |
}, | |
{ | |
"code": "579 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 210, | |
"b": 158 | |
}, | |
"positionInBook": 1511 | |
}, | |
{ | |
"code": "578 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 197, | |
"b": 142 | |
}, | |
"positionInBook": 1512 | |
}, | |
{ | |
"code": "577 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 180, | |
"b": 121 | |
}, | |
"positionInBook": 1513 | |
}, | |
{ | |
"code": "576 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 155, | |
"b": 98 | |
}, | |
"positionInBook": 1514 | |
}, | |
{ | |
"code": "575 U", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 132, | |
"b": 86 | |
}, | |
"positionInBook": 1515 | |
}, | |
{ | |
"code": "574 U", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 115, | |
"b": 85 | |
}, | |
"positionInBook": 1516 | |
}, | |
{ | |
"code": "5807 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 211, | |
"b": 169 | |
}, | |
"positionInBook": 1517 | |
}, | |
{ | |
"code": "5797 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 202, | |
"b": 156 | |
}, | |
"positionInBook": 1518 | |
}, | |
{ | |
"code": "5787 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 190, | |
"b": 143 | |
}, | |
"positionInBook": 1519 | |
}, | |
{ | |
"code": "5777 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 169, | |
"b": 123 | |
}, | |
"positionInBook": 1520 | |
}, | |
{ | |
"code": "5767 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 152, | |
"b": 108 | |
}, | |
"positionInBook": 1521 | |
}, | |
{ | |
"code": "5757 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 133, | |
"b": 92 | |
}, | |
"positionInBook": 1522 | |
}, | |
{ | |
"code": "5747 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 116, | |
"b": 78 | |
}, | |
"positionInBook": 1523 | |
}, | |
{ | |
"code": "5875 U", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 211, | |
"b": 161 | |
}, | |
"positionInBook": 1524 | |
}, | |
{ | |
"code": "5865 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 200, | |
"b": 149 | |
}, | |
"positionInBook": 1525 | |
}, | |
{ | |
"code": "5855 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 184, | |
"b": 137 | |
}, | |
"positionInBook": 1526 | |
}, | |
{ | |
"code": "5845 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 163, | |
"b": 117 | |
}, | |
"positionInBook": 1527 | |
}, | |
{ | |
"code": "5835 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 143, | |
"b": 102 | |
}, | |
"positionInBook": 1528 | |
}, | |
{ | |
"code": "5825 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 134, | |
"b": 93 | |
}, | |
"positionInBook": 1529 | |
}, | |
{ | |
"code": "5815 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 111, | |
"b": 76 | |
}, | |
"positionInBook": 1530 | |
}, | |
{ | |
"code": "5803 U", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 211, | |
"b": 184 | |
}, | |
"positionInBook": 1531 | |
}, | |
{ | |
"code": "5793 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 202, | |
"b": 175 | |
}, | |
"positionInBook": 1532 | |
}, | |
{ | |
"code": "5783 U", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 187, | |
"b": 159 | |
}, | |
"positionInBook": 1533 | |
}, | |
{ | |
"code": "5773 U", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 161, | |
"b": 132 | |
}, | |
"positionInBook": 1534 | |
}, | |
{ | |
"code": "5763 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 135, | |
"b": 109 | |
}, | |
"positionInBook": 1535 | |
}, | |
{ | |
"code": "5753 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 124, | |
"b": 97 | |
}, | |
"positionInBook": 1536 | |
}, | |
{ | |
"code": "5743 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 106, | |
"b": 81 | |
}, | |
"positionInBook": 1537 | |
}, | |
{ | |
"code": "7492 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 202, | |
"b": 135 | |
}, | |
"positionInBook": 1538 | |
}, | |
{ | |
"code": "7493 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 193, | |
"b": 148 | |
}, | |
"positionInBook": 1539 | |
}, | |
{ | |
"code": "7494 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 176, | |
"b": 145 | |
}, | |
"positionInBook": 1540 | |
}, | |
{ | |
"code": "7495 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 142, | |
"b": 89 | |
}, | |
"positionInBook": 1541 | |
}, | |
{ | |
"code": "7496 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 132, | |
"b": 72 | |
}, | |
"positionInBook": 1542 | |
}, | |
{ | |
"code": "7497 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 135, | |
"b": 120 | |
}, | |
"positionInBook": 1543 | |
}, | |
{ | |
"code": "7498 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 125, | |
"b": 100 | |
}, | |
"positionInBook": 1544 | |
}, | |
{ | |
"code": "2302 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 179, | |
"b": 110 | |
}, | |
"positionInBook": 1545 | |
}, | |
{ | |
"code": "2303 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 179, | |
"b": 108 | |
}, | |
"positionInBook": 1546 | |
}, | |
{ | |
"code": "2304 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 168, | |
"b": 100 | |
}, | |
"positionInBook": 1547 | |
}, | |
{ | |
"code": "2305 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 167, | |
"b": 71 | |
}, | |
"positionInBook": 1548 | |
}, | |
{ | |
"code": "2306 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 141, | |
"b": 80 | |
}, | |
"positionInBook": 1549 | |
}, | |
{ | |
"code": "2307 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 128, | |
"b": 66 | |
}, | |
"positionInBook": 1550 | |
}, | |
{ | |
"code": "2308 U", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 105, | |
"b": 66 | |
}, | |
"positionInBook": 1551 | |
}, | |
{ | |
"code": "7744 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 190, | |
"b": 86 | |
}, | |
"positionInBook": 1552 | |
}, | |
{ | |
"code": "7745 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 179, | |
"b": 93 | |
}, | |
"positionInBook": 1553 | |
}, | |
{ | |
"code": "7746 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 159, | |
"b": 96 | |
}, | |
"positionInBook": 1554 | |
}, | |
{ | |
"code": "7747 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 150, | |
"b": 97 | |
}, | |
"positionInBook": 1555 | |
}, | |
{ | |
"code": "7748 U", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 140, | |
"b": 98 | |
}, | |
"positionInBook": 1556 | |
}, | |
{ | |
"code": "7749 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 131, | |
"b": 99 | |
}, | |
"positionInBook": 1557 | |
}, | |
{ | |
"code": "7750 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 122, | |
"b": 97 | |
}, | |
"positionInBook": 1558 | |
}, | |
{ | |
"code": "379 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 238, | |
"b": 123 | |
}, | |
"positionInBook": 1559 | |
}, | |
{ | |
"code": "380 U", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 228, | |
"b": 88 | |
}, | |
"positionInBook": 1560 | |
}, | |
{ | |
"code": "381 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 215, | |
"b": 57 | |
}, | |
"positionInBook": 1561 | |
}, | |
{ | |
"code": "382 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 194, | |
"b": 33 | |
}, | |
"positionInBook": 1562 | |
}, | |
{ | |
"code": "383 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 154, | |
"b": 54 | |
}, | |
"positionInBook": 1563 | |
}, | |
{ | |
"code": "384 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 139, | |
"b": 60 | |
}, | |
"positionInBook": 1564 | |
}, | |
{ | |
"code": "385 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 123, | |
"b": 75 | |
}, | |
"positionInBook": 1565 | |
}, | |
{ | |
"code": "386 U", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 241, | |
"b": 120 | |
}, | |
"positionInBook": 1566 | |
}, | |
{ | |
"code": "387 U", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 237, | |
"b": 85 | |
}, | |
"positionInBook": 1567 | |
}, | |
{ | |
"code": "388 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 232, | |
"b": 57 | |
}, | |
"positionInBook": 1568 | |
}, | |
{ | |
"code": "389 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 220, | |
"b": 4 | |
}, | |
"positionInBook": 1569 | |
}, | |
{ | |
"code": "390 U", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 169, | |
"b": 38 | |
}, | |
"positionInBook": 1570 | |
}, | |
{ | |
"code": "391 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 138, | |
"b": 59 | |
}, | |
"positionInBook": 1571 | |
}, | |
{ | |
"code": "392 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 125, | |
"b": 65 | |
}, | |
"positionInBook": 1572 | |
}, | |
{ | |
"code": "587 U", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 236, | |
"b": 151 | |
}, | |
"positionInBook": 1573 | |
}, | |
{ | |
"code": "586 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 233, | |
"b": 136 | |
}, | |
"positionInBook": 1574 | |
}, | |
{ | |
"code": "585 U", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 230, | |
"b": 133 | |
}, | |
"positionInBook": 1575 | |
}, | |
{ | |
"code": "584 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 214, | |
"b": 101 | |
}, | |
"positionInBook": 1576 | |
}, | |
{ | |
"code": "583 U", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 179, | |
"b": 64 | |
}, | |
"positionInBook": 1577 | |
}, | |
{ | |
"code": "582 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 145, | |
"b": 69 | |
}, | |
"positionInBook": 1578 | |
}, | |
{ | |
"code": "581 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 117, | |
"b": 73 | |
}, | |
"positionInBook": 1579 | |
}, | |
{ | |
"code": "393 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 242, | |
"b": 131 | |
}, | |
"positionInBook": 1580 | |
}, | |
{ | |
"code": "394 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 238, | |
"b": 86 | |
}, | |
"positionInBook": 1581 | |
}, | |
{ | |
"code": "395 U", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 236, | |
"b": 63 | |
}, | |
"positionInBook": 1582 | |
}, | |
{ | |
"code": "396 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 226, | |
"b": 0 | |
}, | |
"positionInBook": 1583 | |
}, | |
{ | |
"code": "397 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 170, | |
"b": 49 | |
}, | |
"positionInBook": 1584 | |
}, | |
{ | |
"code": "398 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 149, | |
"b": 57 | |
}, | |
"positionInBook": 1585 | |
}, | |
{ | |
"code": "399 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 133, | |
"b": 55 | |
}, | |
"positionInBook": 1586 | |
}, | |
{ | |
"code": "3935 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 243, | |
"b": 137 | |
}, | |
"positionInBook": 1587 | |
}, | |
{ | |
"code": "3945 U", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 240, | |
"b": 95 | |
}, | |
"positionInBook": 1588 | |
}, | |
{ | |
"code": "3955 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 235, | |
"b": 55 | |
}, | |
"positionInBook": 1589 | |
}, | |
{ | |
"code": "3965 U", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 232, | |
"b": 22 | |
}, | |
"positionInBook": 1590 | |
}, | |
{ | |
"code": "3975 U", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 167, | |
"b": 45 | |
}, | |
"positionInBook": 1591 | |
}, | |
{ | |
"code": "3985 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 144, | |
"b": 63 | |
}, | |
"positionInBook": 1592 | |
}, | |
{ | |
"code": "3995 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 123, | |
"b": 74 | |
}, | |
"positionInBook": 1593 | |
}, | |
{ | |
"code": "600 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 242, | |
"b": 157 | |
}, | |
"positionInBook": 1594 | |
}, | |
{ | |
"code": "601 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 239, | |
"b": 143 | |
}, | |
"positionInBook": 1595 | |
}, | |
{ | |
"code": "602 U", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 238, | |
"b": 131 | |
}, | |
"positionInBook": 1596 | |
}, | |
{ | |
"code": "603 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 229, | |
"b": 100 | |
}, | |
"positionInBook": 1597 | |
}, | |
{ | |
"code": "604 U", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 220, | |
"b": 77 | |
}, | |
"positionInBook": 1598 | |
}, | |
{ | |
"code": "605 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 204, | |
"b": 57 | |
}, | |
"positionInBook": 1599 | |
}, | |
{ | |
"code": "606 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 184, | |
"b": 41 | |
}, | |
"positionInBook": 1600 | |
}, | |
{ | |
"code": "607 U", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 234, | |
"b": 161 | |
}, | |
"positionInBook": 1601 | |
}, | |
{ | |
"code": "608 U", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 230, | |
"b": 145 | |
}, | |
"positionInBook": 1602 | |
}, | |
{ | |
"code": "609 U", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 224, | |
"b": 129 | |
}, | |
"positionInBook": 1603 | |
}, | |
{ | |
"code": "610 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 210, | |
"b": 104 | |
}, | |
"positionInBook": 1604 | |
}, | |
{ | |
"code": "611 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 185, | |
"b": 78 | |
}, | |
"positionInBook": 1605 | |
}, | |
{ | |
"code": "612 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 167, | |
"b": 63 | |
}, | |
"positionInBook": 1606 | |
}, | |
{ | |
"code": "613 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 148, | |
"b": 56 | |
}, | |
"positionInBook": 1607 | |
}, | |
{ | |
"code": "461 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 226, | |
"b": 159 | |
}, | |
"positionInBook": 1608 | |
}, | |
{ | |
"code": "460 U", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 217, | |
"b": 139 | |
}, | |
"positionInBook": 1609 | |
}, | |
{ | |
"code": "459 U", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 203, | |
"b": 119 | |
}, | |
"positionInBook": 1610 | |
}, | |
{ | |
"code": "458 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 185, | |
"b": 100 | |
}, | |
"positionInBook": 1611 | |
}, | |
{ | |
"code": "457 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 152, | |
"b": 68 | |
}, | |
"positionInBook": 1612 | |
}, | |
{ | |
"code": "456 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 129, | |
"b": 69 | |
}, | |
"positionInBook": 1613 | |
}, | |
{ | |
"code": "455 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 111, | |
"b": 72 | |
}, | |
"positionInBook": 1614 | |
}, | |
{ | |
"code": "614 U", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 217, | |
"b": 161 | |
}, | |
"positionInBook": 1615 | |
}, | |
{ | |
"code": "615 U", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 208, | |
"b": 150 | |
}, | |
"positionInBook": 1616 | |
}, | |
{ | |
"code": "616 U", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 197, | |
"b": 136 | |
}, | |
"positionInBook": 1617 | |
}, | |
{ | |
"code": "617 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 178, | |
"b": 117 | |
}, | |
"positionInBook": 1618 | |
}, | |
{ | |
"code": "618 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 157, | |
"b": 98 | |
}, | |
"positionInBook": 1619 | |
}, | |
{ | |
"code": "619 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 141, | |
"b": 84 | |
}, | |
"positionInBook": 1620 | |
}, | |
{ | |
"code": "620 U", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 127, | |
"b": 73 | |
}, | |
"positionInBook": 1621 | |
}, | |
{ | |
"code": "7751 U", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 189, | |
"b": 113 | |
}, | |
"positionInBook": 1622 | |
}, | |
{ | |
"code": "7752 U", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 185, | |
"b": 97 | |
}, | |
"positionInBook": 1623 | |
}, | |
{ | |
"code": "7753 U", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 170, | |
"b": 93 | |
}, | |
"positionInBook": 1624 | |
}, | |
{ | |
"code": "7754 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 145, | |
"b": 94 | |
}, | |
"positionInBook": 1625 | |
}, | |
{ | |
"code": "7755 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 133, | |
"b": 95 | |
}, | |
"positionInBook": 1626 | |
}, | |
{ | |
"code": "7756 U", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 125, | |
"b": 98 | |
}, | |
"positionInBook": 1627 | |
}, | |
{ | |
"code": "7757 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 117, | |
"b": 95 | |
}, | |
"positionInBook": 1628 | |
}, | |
{ | |
"code": "7758 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 201, | |
"b": 88 | |
}, | |
"positionInBook": 1629 | |
}, | |
{ | |
"code": "7759 U", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 184, | |
"b": 82 | |
}, | |
"positionInBook": 1630 | |
}, | |
{ | |
"code": "7760 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 143, | |
"b": 94 | |
}, | |
"positionInBook": 1631 | |
}, | |
{ | |
"code": "7761 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 129, | |
"b": 98 | |
}, | |
"positionInBook": 1632 | |
}, | |
{ | |
"code": "7762 U", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 122, | |
"b": 99 | |
}, | |
"positionInBook": 1633 | |
}, | |
{ | |
"code": "7763 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 116, | |
"b": 99 | |
}, | |
"positionInBook": 1634 | |
}, | |
{ | |
"code": "7764 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 110, | |
"b": 96 | |
}, | |
"positionInBook": 1635 | |
}, | |
{ | |
"code": "7765 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 186, | |
"b": 94 | |
}, | |
"positionInBook": 1636 | |
}, | |
{ | |
"code": "7766 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 179, | |
"b": 95 | |
}, | |
"positionInBook": 1637 | |
}, | |
{ | |
"code": "7767 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 167, | |
"b": 99 | |
}, | |
"positionInBook": 1638 | |
}, | |
{ | |
"code": "7768 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 139, | |
"b": 98 | |
}, | |
"positionInBook": 1639 | |
}, | |
{ | |
"code": "7769 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 119, | |
"b": 95 | |
}, | |
"positionInBook": 1640 | |
}, | |
{ | |
"code": "7770 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 114, | |
"b": 97 | |
}, | |
"positionInBook": 1641 | |
}, | |
{ | |
"code": "7771 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 101, | |
"b": 90 | |
}, | |
"positionInBook": 1642 | |
}, | |
{ | |
"code": "4545 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 204, | |
"b": 166 | |
}, | |
"positionInBook": 1643 | |
}, | |
{ | |
"code": "4535 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 190, | |
"b": 150 | |
}, | |
"positionInBook": 1644 | |
}, | |
{ | |
"code": "4525 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 181, | |
"b": 140 | |
}, | |
"positionInBook": 1645 | |
}, | |
{ | |
"code": "4515 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 165, | |
"b": 126 | |
}, | |
"positionInBook": 1646 | |
}, | |
{ | |
"code": "4505 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 151, | |
"b": 113 | |
}, | |
"positionInBook": 1647 | |
}, | |
{ | |
"code": "4495 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 132, | |
"b": 95 | |
}, | |
"positionInBook": 1648 | |
}, | |
{ | |
"code": "4485 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 111, | |
"b": 75 | |
}, | |
"positionInBook": 1649 | |
}, | |
{ | |
"code": "2323 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 193, | |
"b": 170 | |
}, | |
"positionInBook": 1650 | |
}, | |
{ | |
"code": "2324 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 162, | |
"b": 137 | |
}, | |
"positionInBook": 1651 | |
}, | |
{ | |
"code": "2325 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 150, | |
"b": 129 | |
}, | |
"positionInBook": 1652 | |
}, | |
{ | |
"code": "2326 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 140, | |
"b": 121 | |
}, | |
"positionInBook": 1653 | |
}, | |
{ | |
"code": "2327 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 137, | |
"b": 117 | |
}, | |
"positionInBook": 1654 | |
}, | |
{ | |
"code": "2328 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 119, | |
"b": 103 | |
}, | |
"positionInBook": 1655 | |
}, | |
{ | |
"code": "2329 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 111, | |
"b": 97 | |
}, | |
"positionInBook": 1656 | |
}, | |
{ | |
"code": "454 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 200, | |
"b": 172 | |
}, | |
"positionInBook": 1657 | |
}, | |
{ | |
"code": "453 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 185, | |
"b": 153 | |
}, | |
"positionInBook": 1658 | |
}, | |
{ | |
"code": "452 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 166, | |
"b": 135 | |
}, | |
"positionInBook": 1659 | |
}, | |
{ | |
"code": "451 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 145, | |
"b": 114 | |
}, | |
"positionInBook": 1660 | |
}, | |
{ | |
"code": "450 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 120, | |
"b": 90 | |
}, | |
"positionInBook": 1661 | |
}, | |
{ | |
"code": "449 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 108, | |
"b": 84 | |
}, | |
"positionInBook": 1662 | |
}, | |
{ | |
"code": "448 U", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 97, | |
"b": 78 | |
}, | |
"positionInBook": 1663 | |
}, | |
{ | |
"code": "7499 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 237, | |
"b": 188 | |
}, | |
"positionInBook": 1664 | |
}, | |
{ | |
"code": "7500 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 213, | |
"b": 171 | |
}, | |
"positionInBook": 1665 | |
}, | |
{ | |
"code": "7501 U", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 203, | |
"b": 165 | |
}, | |
"positionInBook": 1666 | |
}, | |
{ | |
"code": "7502 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 175, | |
"b": 135 | |
}, | |
"positionInBook": 1667 | |
}, | |
{ | |
"code": "7503 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 146, | |
"b": 114 | |
}, | |
"positionInBook": 1668 | |
}, | |
{ | |
"code": "7504 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 130, | |
"b": 114 | |
}, | |
"positionInBook": 1669 | |
}, | |
{ | |
"code": "7505 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 117, | |
"b": 102 | |
}, | |
"positionInBook": 1670 | |
}, | |
{ | |
"code": "468 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 206, | |
"b": 170 | |
}, | |
"positionInBook": 1671 | |
}, | |
{ | |
"code": "467 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 186, | |
"b": 146 | |
}, | |
"positionInBook": 1672 | |
}, | |
{ | |
"code": "466 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 166, | |
"b": 127 | |
}, | |
"positionInBook": 1673 | |
}, | |
{ | |
"code": "465 U", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 148, | |
"b": 111 | |
}, | |
"positionInBook": 1674 | |
}, | |
{ | |
"code": "464 U", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 124, | |
"b": 86 | |
}, | |
"positionInBook": 1675 | |
}, | |
{ | |
"code": "463 U", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 111, | |
"b": 81 | |
}, | |
"positionInBook": 1676 | |
}, | |
{ | |
"code": "462 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 98, | |
"b": 77 | |
}, | |
"positionInBook": 1677 | |
}, | |
{ | |
"code": "7506 U", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 225, | |
"b": 183 | |
}, | |
"positionInBook": 1678 | |
}, | |
{ | |
"code": "7507 U", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 221, | |
"b": 170 | |
}, | |
"positionInBook": 1679 | |
}, | |
{ | |
"code": "7508 U", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 179, | |
"b": 132 | |
}, | |
"positionInBook": 1680 | |
}, | |
{ | |
"code": "7509 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 162, | |
"b": 115 | |
}, | |
"positionInBook": 1681 | |
}, | |
{ | |
"code": "7510 U", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 139, | |
"b": 96 | |
}, | |
"positionInBook": 1682 | |
}, | |
{ | |
"code": "7511 U", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 119, | |
"b": 80 | |
}, | |
"positionInBook": 1683 | |
}, | |
{ | |
"code": "7512 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 107, | |
"b": 71 | |
}, | |
"positionInBook": 1684 | |
}, | |
{ | |
"code": "719 U", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 198, | |
"b": 162 | |
}, | |
"positionInBook": 1685 | |
}, | |
{ | |
"code": "720 U", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 186, | |
"b": 147 | |
}, | |
"positionInBook": 1686 | |
}, | |
{ | |
"code": "721 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 168, | |
"b": 128 | |
}, | |
"positionInBook": 1687 | |
}, | |
{ | |
"code": "722 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 145, | |
"b": 108 | |
}, | |
"positionInBook": 1688 | |
}, | |
{ | |
"code": "723 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 130, | |
"b": 95 | |
}, | |
"positionInBook": 1689 | |
}, | |
{ | |
"code": "724 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 115, | |
"b": 80 | |
}, | |
"positionInBook": 1690 | |
}, | |
{ | |
"code": "725 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 103, | |
"b": 71 | |
}, | |
"positionInBook": 1691 | |
}, | |
{ | |
"code": "475 U", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 204, | |
"b": 173 | |
}, | |
"positionInBook": 1692 | |
}, | |
{ | |
"code": "474 U", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 189, | |
"b": 157 | |
}, | |
"positionInBook": 1693 | |
}, | |
{ | |
"code": "473 U", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 171, | |
"b": 136 | |
}, | |
"positionInBook": 1694 | |
}, | |
{ | |
"code": "472 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 146, | |
"b": 113 | |
}, | |
"positionInBook": 1695 | |
}, | |
{ | |
"code": "471 U", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 123, | |
"b": 84 | |
}, | |
"positionInBook": 1696 | |
}, | |
{ | |
"code": "470 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 112, | |
"b": 82 | |
}, | |
"positionInBook": 1697 | |
}, | |
{ | |
"code": "469 U", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 96, | |
"b": 75 | |
}, | |
"positionInBook": 1698 | |
}, | |
{ | |
"code": "726 U", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 198, | |
"b": 169 | |
}, | |
"positionInBook": 1699 | |
}, | |
{ | |
"code": "727 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 181, | |
"b": 150 | |
}, | |
"positionInBook": 1700 | |
}, | |
{ | |
"code": "728 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 161, | |
"b": 130 | |
}, | |
"positionInBook": 1701 | |
}, | |
{ | |
"code": "729 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 146, | |
"b": 117 | |
}, | |
"positionInBook": 1702 | |
}, | |
{ | |
"code": "730 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 126, | |
"b": 98 | |
}, | |
"positionInBook": 1703 | |
}, | |
{ | |
"code": "731 U", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 113, | |
"b": 86 | |
}, | |
"positionInBook": 1704 | |
}, | |
{ | |
"code": "732 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 103, | |
"b": 77 | |
}, | |
"positionInBook": 1705 | |
}, | |
{ | |
"code": "2316 U", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 160, | |
"b": 134 | |
}, | |
"positionInBook": 1706 | |
}, | |
{ | |
"code": "2317 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 140, | |
"b": 113 | |
}, | |
"positionInBook": 1707 | |
}, | |
{ | |
"code": "2318 U", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 126, | |
"b": 101 | |
}, | |
"positionInBook": 1708 | |
}, | |
{ | |
"code": "2319 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 110, | |
"b": 87 | |
}, | |
"positionInBook": 1709 | |
}, | |
{ | |
"code": "2320 U", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 93, | |
"b": 72 | |
}, | |
"positionInBook": 1710 | |
}, | |
{ | |
"code": "2321 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 105, | |
"b": 92 | |
}, | |
"positionInBook": 1711 | |
}, | |
{ | |
"code": "2322 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 82, | |
"b": 66 | |
}, | |
"positionInBook": 1712 | |
}, | |
{ | |
"code": "2309 U", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 208, | |
"b": 180 | |
}, | |
"positionInBook": 1713 | |
}, | |
{ | |
"code": "2310 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 194, | |
"b": 170 | |
}, | |
"positionInBook": 1714 | |
}, | |
{ | |
"code": "2311 U", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 168, | |
"b": 139 | |
}, | |
"positionInBook": 1715 | |
}, | |
{ | |
"code": "2312 U", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 161, | |
"b": 141 | |
}, | |
"positionInBook": 1716 | |
}, | |
{ | |
"code": "2313 U", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 150, | |
"b": 118 | |
}, | |
"positionInBook": 1717 | |
}, | |
{ | |
"code": "2314 U", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 128, | |
"b": 99 | |
}, | |
"positionInBook": 1718 | |
}, | |
{ | |
"code": "2315 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 99, | |
"b": 64 | |
}, | |
"positionInBook": 1719 | |
}, | |
{ | |
"code": "4685 U", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 202, | |
"b": 179 | |
}, | |
"positionInBook": 1720 | |
}, | |
{ | |
"code": "4675 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 185, | |
"b": 161 | |
}, | |
"positionInBook": 1721 | |
}, | |
{ | |
"code": "4665 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 165, | |
"b": 142 | |
}, | |
"positionInBook": 1722 | |
}, | |
{ | |
"code": "4655 U", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 142, | |
"b": 123 | |
}, | |
"positionInBook": 1723 | |
}, | |
{ | |
"code": "4645 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 125, | |
"b": 107 | |
}, | |
"positionInBook": 1724 | |
}, | |
{ | |
"code": "4635 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 113, | |
"b": 94 | |
}, | |
"positionInBook": 1725 | |
}, | |
{ | |
"code": "4625 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 88, | |
"b": 69 | |
}, | |
"positionInBook": 1726 | |
}, | |
{ | |
"code": "7513 U", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 187, | |
"b": 180 | |
}, | |
"positionInBook": 1727 | |
}, | |
{ | |
"code": "7514 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 171, | |
"b": 156 | |
}, | |
"positionInBook": 1728 | |
}, | |
{ | |
"code": "7515 U", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 144, | |
"b": 127 | |
}, | |
"positionInBook": 1729 | |
}, | |
{ | |
"code": "7516 U", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 116, | |
"b": 98 | |
}, | |
"positionInBook": 1730 | |
}, | |
{ | |
"code": "7517 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 105, | |
"b": 87 | |
}, | |
"positionInBook": 1731 | |
}, | |
{ | |
"code": "7518 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 113, | |
"b": 114 | |
}, | |
"positionInBook": 1732 | |
}, | |
{ | |
"code": "7519 U", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 107, | |
"b": 102 | |
}, | |
"positionInBook": 1733 | |
}, | |
{ | |
"code": "4755 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 198, | |
"b": 187 | |
}, | |
"positionInBook": 1734 | |
}, | |
{ | |
"code": "4745 U", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 180, | |
"b": 169 | |
}, | |
"positionInBook": 1735 | |
}, | |
{ | |
"code": "4735 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 161, | |
"b": 149 | |
}, | |
"positionInBook": 1736 | |
}, | |
{ | |
"code": "4725 U", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 145, | |
"b": 136 | |
}, | |
"positionInBook": 1737 | |
}, | |
{ | |
"code": "4715 U", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 125, | |
"b": 115 | |
}, | |
"positionInBook": 1738 | |
}, | |
{ | |
"code": "4705 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 111, | |
"b": 102 | |
}, | |
"positionInBook": 1739 | |
}, | |
{ | |
"code": "4695 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 92, | |
"b": 80 | |
}, | |
"positionInBook": 1740 | |
}, | |
{ | |
"code": "482 U", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 200, | |
"b": 183 | |
}, | |
"positionInBook": 1741 | |
}, | |
{ | |
"code": "481 U", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 183, | |
"b": 167 | |
}, | |
"positionInBook": 1742 | |
}, | |
{ | |
"code": "480 U", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 164, | |
"b": 146 | |
}, | |
"positionInBook": 1743 | |
}, | |
{ | |
"code": "479 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 140, | |
"b": 126 | |
}, | |
"positionInBook": 1744 | |
}, | |
{ | |
"code": "478 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 110, | |
"b": 92 | |
}, | |
"positionInBook": 1745 | |
}, | |
{ | |
"code": "477 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 101, | |
"b": 86 | |
}, | |
"positionInBook": 1746 | |
}, | |
{ | |
"code": "476 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 94, | |
"b": 82 | |
}, | |
"positionInBook": 1747 | |
}, | |
{ | |
"code": "7527 U", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 215, | |
"b": 210 | |
}, | |
"positionInBook": 1748 | |
}, | |
{ | |
"code": "7528 U", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 199, | |
"b": 196 | |
}, | |
"positionInBook": 1749 | |
}, | |
{ | |
"code": "7529 U", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 175, | |
"b": 169 | |
}, | |
"positionInBook": 1750 | |
}, | |
{ | |
"code": "7530 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 156, | |
"b": 149 | |
}, | |
"positionInBook": 1751 | |
}, | |
{ | |
"code": "7531 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 127, | |
"b": 121 | |
}, | |
"positionInBook": 1752 | |
}, | |
{ | |
"code": "7532 U", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 110, | |
"b": 102 | |
}, | |
"positionInBook": 1753 | |
}, | |
{ | |
"code": "7533 U", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 100, | |
"b": 92 | |
}, | |
"positionInBook": 1754 | |
}, | |
{ | |
"code": "7534 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 203, | |
"b": 195 | |
}, | |
"positionInBook": 1755 | |
}, | |
{ | |
"code": "7535 U", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 186, | |
"b": 176 | |
}, | |
"positionInBook": 1756 | |
}, | |
{ | |
"code": "7536 U", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 168, | |
"b": 157 | |
}, | |
"positionInBook": 1757 | |
}, | |
{ | |
"code": "7537 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 184, | |
"b": 182 | |
}, | |
"positionInBook": 1758 | |
}, | |
{ | |
"code": "7538 U", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 170, | |
"b": 168 | |
}, | |
"positionInBook": 1759 | |
}, | |
{ | |
"code": "7539 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 158, | |
"b": 160 | |
}, | |
"positionInBook": 1760 | |
}, | |
{ | |
"code": "7540 U", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 116, | |
"b": 124 | |
}, | |
"positionInBook": 1761 | |
}, | |
{ | |
"code": "427 U", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 199, | |
"b": 202 | |
}, | |
"positionInBook": 1762 | |
}, | |
{ | |
"code": "428 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 179, | |
"b": 184 | |
}, | |
"positionInBook": 1763 | |
}, | |
{ | |
"code": "429 U", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 153, | |
"b": 159 | |
}, | |
"positionInBook": 1764 | |
}, | |
{ | |
"code": "430 U", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 137, | |
"b": 145 | |
}, | |
"positionInBook": 1765 | |
}, | |
{ | |
"code": "431 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 123, | |
"b": 130 | |
}, | |
"positionInBook": 1766 | |
}, | |
{ | |
"code": "432 U", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 108, | |
"b": 115 | |
}, | |
"positionInBook": 1767 | |
}, | |
{ | |
"code": "433 U", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 93, | |
"b": 98 | |
}, | |
"positionInBook": 1768 | |
}, | |
{ | |
"code": "420 U", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 190, | |
"b": 189 | |
}, | |
"positionInBook": 1769 | |
}, | |
{ | |
"code": "421 U", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 181, | |
"b": 181 | |
}, | |
"positionInBook": 1770 | |
}, | |
{ | |
"code": "422 U", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 161, | |
"b": 162 | |
}, | |
"positionInBook": 1771 | |
}, | |
{ | |
"code": "423 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 148, | |
"b": 150 | |
}, | |
"positionInBook": 1772 | |
}, | |
{ | |
"code": "424 U", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 137, | |
"b": 138 | |
}, | |
"positionInBook": 1773 | |
}, | |
{ | |
"code": "425 U", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 126, | |
"b": 127 | |
}, | |
"positionInBook": 1774 | |
}, | |
{ | |
"code": "426 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 104, | |
"b": 105 | |
}, | |
"positionInBook": 1775 | |
}, | |
{ | |
"code": "441 U", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 194, | |
"b": 193 | |
}, | |
"positionInBook": 1776 | |
}, | |
{ | |
"code": "442 U", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 182, | |
"b": 182 | |
}, | |
"positionInBook": 1777 | |
}, | |
{ | |
"code": "443 U", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 154, | |
"b": 155 | |
}, | |
"positionInBook": 1778 | |
}, | |
{ | |
"code": "444 U", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 135, | |
"b": 137 | |
}, | |
"positionInBook": 1779 | |
}, | |
{ | |
"code": "445 U", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 113, | |
"b": 115 | |
}, | |
"positionInBook": 1780 | |
}, | |
{ | |
"code": "446 U", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 105, | |
"b": 104 | |
}, | |
"positionInBook": 1781 | |
}, | |
{ | |
"code": "447 U", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 98, | |
"b": 95 | |
}, | |
"positionInBook": 1782 | |
}, | |
{ | |
"code": "413 U", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 189, | |
"b": 180 | |
}, | |
"positionInBook": 1783 | |
}, | |
{ | |
"code": "414 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 172, | |
"b": 165 | |
}, | |
"positionInBook": 1784 | |
}, | |
{ | |
"code": "415 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 159, | |
"b": 153 | |
}, | |
"positionInBook": 1785 | |
}, | |
{ | |
"code": "416 U", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 146, | |
"b": 140 | |
}, | |
"positionInBook": 1786 | |
}, | |
{ | |
"code": "417 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 132, | |
"b": 127 | |
}, | |
"positionInBook": 1787 | |
}, | |
{ | |
"code": "418 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 123, | |
"b": 117 | |
}, | |
"positionInBook": 1788 | |
}, | |
{ | |
"code": "419 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 89, | |
"b": 85 | |
}, | |
"positionInBook": 1789 | |
}, | |
{ | |
"code": "2330 U", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 206, | |
"b": 201 | |
}, | |
"positionInBook": 1790 | |
}, | |
{ | |
"code": "2331 U", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 172, | |
"b": 170 | |
}, | |
"positionInBook": 1791 | |
}, | |
{ | |
"code": "2332 U", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 138, | |
"b": 136 | |
}, | |
"positionInBook": 1792 | |
}, | |
{ | |
"code": "2333 U", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 116, | |
"b": 116 | |
}, | |
"positionInBook": 1793 | |
}, | |
{ | |
"code": "2334 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 110, | |
"b": 110 | |
}, | |
"positionInBook": 1794 | |
}, | |
{ | |
"code": "2335 U", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 105, | |
"b": 102 | |
}, | |
"positionInBook": 1795 | |
}, | |
{ | |
"code": "2336 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 102, | |
"b": 102 | |
}, | |
"positionInBook": 1796 | |
}, | |
{ | |
"code": "400 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 193, | |
"b": 186 | |
}, | |
"positionInBook": 1797 | |
}, | |
{ | |
"code": "401 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 174, | |
"b": 167 | |
}, | |
"positionInBook": 1798 | |
}, | |
{ | |
"code": "402 U", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 158, | |
"b": 152 | |
}, | |
"positionInBook": 1799 | |
}, | |
{ | |
"code": "403 U", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 141, | |
"b": 136 | |
}, | |
"positionInBook": 1800 | |
}, | |
{ | |
"code": "404 U", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 134, | |
"b": 129 | |
}, | |
"positionInBook": 1801 | |
}, | |
{ | |
"code": "405 U", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 114, | |
"b": 109 | |
}, | |
"positionInBook": 1802 | |
}, | |
{ | |
"code": "Black U", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 93, | |
"b": 89 | |
}, | |
"positionInBook": 1803 | |
}, | |
{ | |
"code": "406 U", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 190, | |
"b": 186 | |
}, | |
"positionInBook": 1804 | |
}, | |
{ | |
"code": "407 U", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 162, | |
"b": 160 | |
}, | |
"positionInBook": 1805 | |
}, | |
{ | |
"code": "408 U", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 149, | |
"b": 148 | |
}, | |
"positionInBook": 1806 | |
}, | |
{ | |
"code": "409 U", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 139, | |
"b": 138 | |
}, | |
"positionInBook": 1807 | |
}, | |
{ | |
"code": "410 U", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 130, | |
"b": 128 | |
}, | |
"positionInBook": 1808 | |
}, | |
{ | |
"code": "411 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 114, | |
"b": 111 | |
}, | |
"positionInBook": 1809 | |
}, | |
{ | |
"code": "412 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 92, | |
"b": 89 | |
}, | |
"positionInBook": 1810 | |
}, | |
{ | |
"code": "434 U", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 202, | |
"b": 203 | |
}, | |
"positionInBook": 1811 | |
}, | |
{ | |
"code": "435 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 169, | |
"b": 173 | |
}, | |
"positionInBook": 1812 | |
}, | |
{ | |
"code": "436 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 155, | |
"b": 159 | |
}, | |
"positionInBook": 1813 | |
}, | |
{ | |
"code": "437 U", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 127, | |
"b": 131 | |
}, | |
"positionInBook": 1814 | |
}, | |
{ | |
"code": "438 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 114, | |
"b": 117 | |
}, | |
"positionInBook": 1815 | |
}, | |
{ | |
"code": "439 U", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 104, | |
"b": 105 | |
}, | |
"positionInBook": 1816 | |
}, | |
{ | |
"code": "440 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 97, | |
"b": 95 | |
}, | |
"positionInBook": 1817 | |
}, | |
{ | |
"code": "Warm Gray 1 U", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 213, | |
"b": 205 | |
}, | |
"positionInBook": 1818 | |
}, | |
{ | |
"code": "Warm Gray 2 U", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 199, | |
"b": 192 | |
}, | |
"positionInBook": 1819 | |
}, | |
{ | |
"code": "Warm Gray 3 U", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 182, | |
"b": 175 | |
}, | |
"positionInBook": 1820 | |
}, | |
{ | |
"code": "Warm Gray 4 U", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 172, | |
"b": 166 | |
}, | |
"positionInBook": 1821 | |
}, | |
{ | |
"code": "Warm Gray 5 U", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 161, | |
"b": 155 | |
}, | |
"positionInBook": 1822 | |
}, | |
{ | |
"code": "Warm Gray 6 U", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 155, | |
"b": 150 | |
}, | |
"positionInBook": 1823 | |
}, | |
{ | |
"code": "Warm Gray 7 U", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 143, | |
"b": 139 | |
}, | |
"positionInBook": 1824 | |
}, | |
{ | |
"code": "Warm Gray 8 U", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 136, | |
"b": 132 | |
}, | |
"positionInBook": 1825 | |
}, | |
{ | |
"code": "Warm Gray 9 U", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 127, | |
"b": 124 | |
}, | |
"positionInBook": 1826 | |
}, | |
{ | |
"code": "Warm Gray 10 U", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 124, | |
"b": 120 | |
}, | |
"positionInBook": 1827 | |
}, | |
{ | |
"code": "Warm Gray 11 U", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 119, | |
"b": 115 | |
}, | |
"positionInBook": 1828 | |
}, | |
{ | |
"code": "Cool Gray 1 U", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 217, | |
"b": 214 | |
}, | |
"positionInBook": 1829 | |
}, | |
{ | |
"code": "Cool Gray 2 U", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 202, | |
"b": 200 | |
}, | |
"positionInBook": 1830 | |
}, | |
{ | |
"code": "Cool Gray 3 U", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 197, | |
"b": 197 | |
}, | |
"positionInBook": 1831 | |
}, | |
{ | |
"code": "Cool Gray 4 U", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 184, | |
"b": 185 | |
}, | |
"positionInBook": 1832 | |
}, | |
{ | |
"code": "Cool Gray 5 U", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 174, | |
"b": 176 | |
}, | |
"positionInBook": 1833 | |
}, | |
{ | |
"code": "Cool Gray 6 U", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 166, | |
"b": 168 | |
}, | |
"positionInBook": 1834 | |
}, | |
{ | |
"code": "Cool Gray 7 U", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 158, | |
"b": 160 | |
}, | |
"positionInBook": 1835 | |
}, | |
{ | |
"code": "Cool Gray 8 U", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 149, | |
"b": 152 | |
}, | |
"positionInBook": 1836 | |
}, | |
{ | |
"code": "Cool Gray 9 U", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 139, | |
"b": 142 | |
}, | |
"positionInBook": 1837 | |
}, | |
{ | |
"code": "Cool Gray 10 U", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 131, | |
"b": 135 | |
}, | |
"positionInBook": 1838 | |
}, | |
{ | |
"code": "Cool Gray 11 U", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 125, | |
"b": 129 | |
}, | |
"positionInBook": 1839 | |
}, | |
{ | |
"code": "Black 2 U", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 96, | |
"b": 82 | |
}, | |
"positionInBook": 1840 | |
}, | |
{ | |
"code": "Black 3 U", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 93, | |
"b": 89 | |
}, | |
"positionInBook": 1841 | |
}, | |
{ | |
"code": "Black 4 U", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 96, | |
"b": 86 | |
}, | |
"positionInBook": 1842 | |
}, | |
{ | |
"code": "Black 5 U", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 90, | |
"b": 92 | |
}, | |
"positionInBook": 1843 | |
}, | |
{ | |
"code": "Black 6 U", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 78, | |
"b": 86 | |
}, | |
"positionInBook": 1844 | |
}, | |
{ | |
"code": "Black 7 U", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 104, | |
"b": 100 | |
}, | |
"positionInBook": 1845 | |
} | |
] | |
}, | |
{ | |
"id": "pantoneFhiMetallicShimmersTpmM2", | |
"colors": [ | |
{ | |
"code": "20-0001 TPM", | |
"name": "Ice Flow", | |
"rgb": { | |
"r": 211, | |
"g": 217, | |
"b": 220 | |
}, | |
"positionInBook": 0 | |
}, | |
{ | |
"code": "20-0002 TPM", | |
"name": "Ice Palace", | |
"rgb": { | |
"r": 181, | |
"g": 183, | |
"b": 182 | |
}, | |
"positionInBook": 1 | |
}, | |
{ | |
"code": "20-0003 TPM", | |
"name": "Disco Ball", | |
"rgb": { | |
"r": 176, | |
"g": 176, | |
"b": 174 | |
}, | |
"positionInBook": 2 | |
}, | |
{ | |
"code": "20-0004 TPM", | |
"name": "Silvery", | |
"rgb": { | |
"r": 140, | |
"g": 143, | |
"b": 141 | |
}, | |
"positionInBook": 3 | |
}, | |
{ | |
"code": "20-0005 TPM", | |
"name": "Chrome", | |
"rgb": { | |
"r": 136, | |
"g": 135, | |
"b": 137 | |
}, | |
"positionInBook": 4 | |
}, | |
{ | |
"code": "20-0006 TPM", | |
"name": "Liquid Luster", | |
"rgb": { | |
"r": 121, | |
"g": 121, | |
"b": 124 | |
}, | |
"positionInBook": 5 | |
}, | |
{ | |
"code": "20-0007 TPM", | |
"name": "Micron", | |
"rgb": { | |
"r": 101, | |
"g": 102, | |
"b": 101 | |
}, | |
"positionInBook": 6 | |
}, | |
{ | |
"code": "20-0008 TPM", | |
"name": "Aluminum Foil", | |
"rgb": { | |
"r": 101, | |
"g": 100, | |
"b": 94 | |
}, | |
"positionInBook": 7 | |
}, | |
{ | |
"code": "20-0009 TPM", | |
"name": "Steel Plate", | |
"rgb": { | |
"r": 110, | |
"g": 118, | |
"b": 122 | |
}, | |
"positionInBook": 8 | |
}, | |
{ | |
"code": "20-0010 TPM", | |
"name": "Steel Wool", | |
"rgb": { | |
"r": 102, | |
"g": 109, | |
"b": 114 | |
}, | |
"positionInBook": 9 | |
}, | |
{ | |
"code": "20-0011 TPM", | |
"name": "Bezel", | |
"rgb": { | |
"r": 57, | |
"g": 68, | |
"b": 74 | |
}, | |
"positionInBook": 10 | |
}, | |
{ | |
"code": "20-0012 TPM", | |
"name": "Metallic Fir", | |
"rgb": { | |
"r": 80, | |
"g": 84, | |
"b": 87 | |
}, | |
"positionInBook": 11 | |
}, | |
{ | |
"code": "20-0013 TPM", | |
"name": "Gadget Gray", | |
"rgb": { | |
"r": 69, | |
"g": 74, | |
"b": 76 | |
}, | |
"positionInBook": 12 | |
}, | |
{ | |
"code": "20-0014 TPM", | |
"name": "Wedding Bells", | |
"rgb": { | |
"r": 171, | |
"g": 176, | |
"b": 165 | |
}, | |
"positionInBook": 13 | |
}, | |
{ | |
"code": "20-0015 TPM", | |
"name": "Comet Streak", | |
"rgb": { | |
"r": 144, | |
"g": 153, | |
"b": 134 | |
}, | |
"positionInBook": 14 | |
}, | |
{ | |
"code": "20-0016 TPM", | |
"name": "Gray Lustre", | |
"rgb": { | |
"r": 130, | |
"g": 134, | |
"b": 126 | |
}, | |
"positionInBook": 15 | |
}, | |
{ | |
"code": "20-0017 TPM", | |
"name": "Razor's Edge ", | |
"rgb": { | |
"r": 139, | |
"g": 139, | |
"b": 130 | |
}, | |
"positionInBook": 16 | |
}, | |
{ | |
"code": "20-0018 TPM", | |
"name": "Scratch Off", | |
"rgb": { | |
"r": 129, | |
"g": 124, | |
"b": 116 | |
}, | |
"positionInBook": 17 | |
}, | |
{ | |
"code": "20-0019 TPM", | |
"name": "Iced Pewter", | |
"rgb": { | |
"r": 105, | |
"g": 100, | |
"b": 91 | |
}, | |
"positionInBook": 18 | |
}, | |
{ | |
"code": "20-0020 TPM", | |
"name": "Satin Slipper", | |
"rgb": { | |
"r": 148, | |
"g": 138, | |
"b": 119 | |
}, | |
"positionInBook": 19 | |
}, | |
{ | |
"code": "20-0021 TPM", | |
"name": "Silver-plated", | |
"rgb": { | |
"r": 188, | |
"g": 178, | |
"b": 158 | |
}, | |
"positionInBook": 20 | |
}, | |
{ | |
"code": "20-0022 TPM", | |
"name": "Effervescent", | |
"rgb": { | |
"r": 192, | |
"g": 173, | |
"b": 150 | |
}, | |
"positionInBook": 21 | |
}, | |
{ | |
"code": "20-0023 TPM", | |
"name": "Satin Sheets", | |
"rgb": { | |
"r": 173, | |
"g": 155, | |
"b": 134 | |
}, | |
"positionInBook": 22 | |
}, | |
{ | |
"code": "20-0024 TPM", | |
"name": "Spumante", | |
"rgb": { | |
"r": 215, | |
"g": 193, | |
"b": 163 | |
}, | |
"positionInBook": 23 | |
}, | |
{ | |
"code": "20-0025 TPM", | |
"name": "Buffed Beige", | |
"rgb": { | |
"r": 189, | |
"g": 161, | |
"b": 130 | |
}, | |
"positionInBook": 24 | |
}, | |
{ | |
"code": "20-0026 TPM", | |
"name": "Desert Mirage", | |
"rgb": { | |
"r": 180, | |
"g": 148, | |
"b": 120 | |
}, | |
"positionInBook": 25 | |
}, | |
{ | |
"code": "20-0027 TPM", | |
"name": "Gold Leaf", | |
"rgb": { | |
"r": 197, | |
"g": 159, | |
"b": 123 | |
}, | |
"positionInBook": 26 | |
}, | |
{ | |
"code": "20-0028 TPM", | |
"name": "Brass Knuckles", | |
"rgb": { | |
"r": 153, | |
"g": 104, | |
"b": 72 | |
}, | |
"positionInBook": 27 | |
}, | |
{ | |
"code": "20-0029 TPM", | |
"name": "Bronze Medal", | |
"rgb": { | |
"r": 161, | |
"g": 118, | |
"b": 82 | |
}, | |
"positionInBook": 28 | |
}, | |
{ | |
"code": "20-0030 TPM", | |
"name": "Shimmer On", | |
"rgb": { | |
"r": 92, | |
"g": 64, | |
"b": 49 | |
}, | |
"positionInBook": 29 | |
}, | |
{ | |
"code": "20-0031 TPM", | |
"name": "Coffee Bean Oil", | |
"rgb": { | |
"r": 75, | |
"g": 60, | |
"b": 51 | |
}, | |
"positionInBook": 30 | |
}, | |
{ | |
"code": "20-0032 TPM", | |
"name": "Blackbird Feather", | |
"rgb": { | |
"r": 65, | |
"g": 49, | |
"b": 42 | |
}, | |
"positionInBook": 31 | |
}, | |
{ | |
"code": "20-0033 TPM", | |
"name": "Glamour Gold", | |
"rgb": { | |
"r": 190, | |
"g": 155, | |
"b": 100 | |
}, | |
"positionInBook": 32 | |
}, | |
{ | |
"code": "20-0034 TPM", | |
"name": "Golden Egg", | |
"rgb": { | |
"r": 188, | |
"g": 158, | |
"b": 110 | |
}, | |
"positionInBook": 33 | |
}, | |
{ | |
"code": "20-0035 TPM", | |
"name": "Space Sand", | |
"rgb": { | |
"r": 180, | |
"g": 142, | |
"b": 93 | |
}, | |
"positionInBook": 34 | |
}, | |
{ | |
"code": "20-0036 TPM", | |
"name": "Two Penny", | |
"rgb": { | |
"r": 149, | |
"g": 92, | |
"b": 32 | |
}, | |
"positionInBook": 35 | |
}, | |
{ | |
"code": "20-0037 TPM", | |
"name": "Fort Knox", | |
"rgb": { | |
"r": 172, | |
"g": 146, | |
"b": 85 | |
}, | |
"positionInBook": 36 | |
}, | |
{ | |
"code": "20-0038 TPM", | |
"name": "Glitteratti", | |
"rgb": { | |
"r": 181, | |
"g": 154, | |
"b": 72 | |
}, | |
"positionInBook": 37 | |
}, | |
{ | |
"code": "20-0039 TPM", | |
"name": "Trophy Cup", | |
"rgb": { | |
"r": 160, | |
"g": 136, | |
"b": 100 | |
}, | |
"positionInBook": 38 | |
}, | |
{ | |
"code": "20-0040 TPM", | |
"name": "Luxe Lemon", | |
"rgb": { | |
"r": 245, | |
"g": 228, | |
"b": 0 | |
}, | |
"positionInBook": 39 | |
}, | |
{ | |
"code": "20-0041 TPM", | |
"name": "Clarified Butter", | |
"rgb": { | |
"r": 241, | |
"g": 212, | |
"b": 75 | |
}, | |
"positionInBook": 40 | |
}, | |
{ | |
"code": "20-0042 TPM", | |
"name": "Platinum Frosting", | |
"rgb": { | |
"r": 216, | |
"g": 202, | |
"b": 157 | |
}, | |
"positionInBook": 41 | |
}, | |
{ | |
"code": "20-0043 TPM", | |
"name": "Faded Jade", | |
"rgb": { | |
"r": 219, | |
"g": 221, | |
"b": 152 | |
}, | |
"positionInBook": 42 | |
}, | |
{ | |
"code": "20-0044 TPM", | |
"name": "Cool Calcite", | |
"rgb": { | |
"r": 215, | |
"g": 207, | |
"b": 123 | |
}, | |
"positionInBook": 43 | |
}, | |
{ | |
"code": "20-0045 TPM", | |
"name": "Limoncello", | |
"rgb": { | |
"r": 221, | |
"g": 199, | |
"b": 56 | |
}, | |
"positionInBook": 44 | |
}, | |
{ | |
"code": "20-0046 TPM", | |
"name": "Firefly", | |
"rgb": { | |
"r": 209, | |
"g": 206, | |
"b": 33 | |
}, | |
"positionInBook": 45 | |
}, | |
{ | |
"code": "20-0047 TPM", | |
"name": "Fleur De Lis", | |
"rgb": { | |
"r": 218, | |
"g": 165, | |
"b": 29 | |
}, | |
"positionInBook": 46 | |
}, | |
{ | |
"code": "20-0048 TPM", | |
"name": "Gold Coast", | |
"rgb": { | |
"r": 227, | |
"g": 161, | |
"b": 48 | |
}, | |
"positionInBook": 47 | |
}, | |
{ | |
"code": "20-0049 TPM", | |
"name": "Solar Flare", | |
"rgb": { | |
"r": 234, | |
"g": 154, | |
"b": 0 | |
}, | |
"positionInBook": 48 | |
}, | |
{ | |
"code": "20-0050 TPM", | |
"name": "Peach Bellini", | |
"rgb": { | |
"r": 220, | |
"g": 151, | |
"b": 119 | |
}, | |
"positionInBook": 49 | |
}, | |
{ | |
"code": "20-0051 TPM", | |
"name": "Krill", | |
"rgb": { | |
"r": 231, | |
"g": 148, | |
"b": 101 | |
}, | |
"positionInBook": 50 | |
}, | |
{ | |
"code": "20-0052 TPM", | |
"name": "Citronella", | |
"rgb": { | |
"r": 219, | |
"g": 154, | |
"b": 105 | |
}, | |
"positionInBook": 51 | |
}, | |
{ | |
"code": "20-0053 TPM", | |
"name": "Gilded Pleasure", | |
"rgb": { | |
"r": 238, | |
"g": 145, | |
"b": 3 | |
}, | |
"positionInBook": 52 | |
}, | |
{ | |
"code": "20-0054 TPM", | |
"name": "Amber Ale", | |
"rgb": { | |
"r": 209, | |
"g": 116, | |
"b": 0 | |
}, | |
"positionInBook": 53 | |
}, | |
{ | |
"code": "20-0055 TPM", | |
"name": "Jack-O-Lantern", | |
"rgb": { | |
"r": 205, | |
"g": 96, | |
"b": 0 | |
}, | |
"positionInBook": 54 | |
}, | |
{ | |
"code": "20-0056 TPM", | |
"name": "Coralessence", | |
"rgb": { | |
"r": 242, | |
"g": 107, | |
"b": 91 | |
}, | |
"positionInBook": 55 | |
}, | |
{ | |
"code": "20-0057 TPM", | |
"name": "Siena Treasure", | |
"rgb": { | |
"r": 174, | |
"g": 96, | |
"b": 54 | |
}, | |
"positionInBook": 56 | |
}, | |
{ | |
"code": "20-0058 TPM", | |
"name": "Copper Skillet", | |
"rgb": { | |
"r": 185, | |
"g": 81, | |
"b": 24 | |
}, | |
"positionInBook": 57 | |
}, | |
{ | |
"code": "20-0059 TPM", | |
"name": "Sweet 'n' Sour", | |
"rgb": { | |
"r": 236, | |
"g": 70, | |
"b": 0 | |
}, | |
"positionInBook": 58 | |
}, | |
{ | |
"code": "20-0060 TPM", | |
"name": "Flasher", | |
"rgb": { | |
"r": 223, | |
"g": 72, | |
"b": 26 | |
}, | |
"positionInBook": 59 | |
}, | |
{ | |
"code": "20-0061 TPM", | |
"name": "Corazon", | |
"rgb": { | |
"r": 210, | |
"g": 40, | |
"b": 9 | |
}, | |
"positionInBook": 60 | |
}, | |
{ | |
"code": "20-0062 TPM", | |
"name": "Sugar & Spice", | |
"rgb": { | |
"r": 192, | |
"g": 93, | |
"b": 72 | |
}, | |
"positionInBook": 61 | |
}, | |
{ | |
"code": "20-0063 TPM", | |
"name": "Bronzer", | |
"rgb": { | |
"r": 158, | |
"g": 73, | |
"b": 54 | |
}, | |
"positionInBook": 62 | |
}, | |
{ | |
"code": "20-0064 TPM", | |
"name": "Silky Rose", | |
"rgb": { | |
"r": 135, | |
"g": 56, | |
"b": 30 | |
}, | |
"positionInBook": 63 | |
}, | |
{ | |
"code": "20-0065 TPM", | |
"name": "Sockeye Salmon", | |
"rgb": { | |
"r": 203, | |
"g": 97, | |
"b": 83 | |
}, | |
"positionInBook": 64 | |
}, | |
{ | |
"code": "20-0066 TPM", | |
"name": "Lilium Luster", | |
"rgb": { | |
"r": 162, | |
"g": 53, | |
"b": 46 | |
}, | |
"positionInBook": 65 | |
}, | |
{ | |
"code": "20-0067 TPM", | |
"name": "Guava Jam", | |
"rgb": { | |
"r": 183, | |
"g": 67, | |
"b": 77 | |
}, | |
"positionInBook": 66 | |
}, | |
{ | |
"code": "20-0068 TPM", | |
"name": "Fruit Punch", | |
"rgb": { | |
"r": 206, | |
"g": 61, | |
"b": 72 | |
}, | |
"positionInBook": 67 | |
}, | |
{ | |
"code": "20-0069 TPM", | |
"name": "Candy Apple Red", | |
"rgb": { | |
"r": 182, | |
"g": 0, | |
"b": 23 | |
}, | |
"positionInBook": 68 | |
}, | |
{ | |
"code": "20-0070 TPM", | |
"name": "Grape Frost", | |
"rgb": { | |
"r": 156, | |
"g": 103, | |
"b": 106 | |
}, | |
"positionInBook": 69 | |
}, | |
{ | |
"code": "20-0071 TPM", | |
"name": "Vineyard Mist", | |
"rgb": { | |
"r": 136, | |
"g": 56, | |
"b": 64 | |
}, | |
"positionInBook": 70 | |
}, | |
{ | |
"code": "20-0072 TPM", | |
"name": "Raspberry Soda", | |
"rgb": { | |
"r": 179, | |
"g": 85, | |
"b": 103 | |
}, | |
"positionInBook": 71 | |
}, | |
{ | |
"code": "20-0073 TPM", | |
"name": "Shock Value", | |
"rgb": { | |
"r": 186, | |
"g": 42, | |
"b": 77 | |
}, | |
"positionInBook": 72 | |
}, | |
{ | |
"code": "20-0074 TPM", | |
"name": "Berry Gloss", | |
"rgb": { | |
"r": 187, | |
"g": 0, | |
"b": 73 | |
}, | |
"positionInBook": 73 | |
}, | |
{ | |
"code": "20-0075 TPM", | |
"name": "Space Cherry", | |
"rgb": { | |
"r": 153, | |
"g": 0, | |
"b": 17 | |
}, | |
"positionInBook": 74 | |
}, | |
{ | |
"code": "20-0076 TPM", | |
"name": "Sceptre Red", | |
"rgb": { | |
"r": 132, | |
"g": 0, | |
"b": 22 | |
}, | |
"positionInBook": 75 | |
}, | |
{ | |
"code": "20-0077 TPM", | |
"name": "Dynasty Pink", | |
"rgb": { | |
"r": 225, | |
"g": 164, | |
"b": 168 | |
}, | |
"positionInBook": 76 | |
}, | |
{ | |
"code": "20-0078 TPM", | |
"name": "Ballet Dancer", | |
"rgb": { | |
"r": 220, | |
"g": 135, | |
"b": 143 | |
}, | |
"positionInBook": 77 | |
}, | |
{ | |
"code": "20-0079 TPM", | |
"name": "Glowing Cheeks", | |
"rgb": { | |
"r": 192, | |
"g": 85, | |
"b": 100 | |
}, | |
"positionInBook": 78 | |
}, | |
{ | |
"code": "20-0080 TPM", | |
"name": "Pucker Up Pink", | |
"rgb": { | |
"r": 202, | |
"g": 51, | |
"b": 104 | |
}, | |
"positionInBook": 79 | |
}, | |
{ | |
"code": "20-0081 TPM", | |
"name": "Blue or Not", | |
"rgb": { | |
"r": 230, | |
"g": 233, | |
"b": 228 | |
}, | |
"positionInBook": 80 | |
}, | |
{ | |
"code": "20-0082 TPM", | |
"name": "Lacquer", | |
"rgb": { | |
"r": 231, | |
"g": 229, | |
"b": 223 | |
}, | |
"positionInBook": 81 | |
}, | |
{ | |
"code": "20-0083 TPM", | |
"name": "Silver Coin", | |
"rgb": { | |
"r": 228, | |
"g": 221, | |
"b": 211 | |
}, | |
"positionInBook": 82 | |
}, | |
{ | |
"code": "20-0084 TPM", | |
"name": "Frosted Birch", | |
"rgb": { | |
"r": 209, | |
"g": 198, | |
"b": 184 | |
}, | |
"positionInBook": 83 | |
}, | |
{ | |
"code": "20-0085 TPM", | |
"name": "Golden Touch", | |
"rgb": { | |
"r": 185, | |
"g": 173, | |
"b": 151 | |
}, | |
"positionInBook": 84 | |
}, | |
{ | |
"code": "20-0086 TPM", | |
"name": "Water Chestnut", | |
"rgb": { | |
"r": 186, | |
"g": 181, | |
"b": 143 | |
}, | |
"positionInBook": 85 | |
}, | |
{ | |
"code": "20-0087 TPM", | |
"name": "Lead Crystal", | |
"rgb": { | |
"r": 194, | |
"g": 191, | |
"b": 181 | |
}, | |
"positionInBook": 86 | |
}, | |
{ | |
"code": "20-0088 TPM", | |
"name": "Golden Eagle", | |
"rgb": { | |
"r": 188, | |
"g": 173, | |
"b": 161 | |
}, | |
"positionInBook": 87 | |
}, | |
{ | |
"code": "20-0089 TPM", | |
"name": "Silver Plate", | |
"rgb": { | |
"r": 173, | |
"g": 165, | |
"b": 159 | |
}, | |
"positionInBook": 88 | |
}, | |
{ | |
"code": "20-0090 TPM", | |
"name": "Himalayan Salt", | |
"rgb": { | |
"r": 209, | |
"g": 186, | |
"b": 181 | |
}, | |
"positionInBook": 89 | |
}, | |
{ | |
"code": "20-0091 TPM", | |
"name": "Filmy", | |
"rgb": { | |
"r": 211, | |
"g": 194, | |
"b": 190 | |
}, | |
"positionInBook": 90 | |
}, | |
{ | |
"code": "20-0092 TPM", | |
"name": "Pale Orchid", | |
"rgb": { | |
"r": 216, | |
"g": 183, | |
"b": 173 | |
}, | |
"positionInBook": 91 | |
}, | |
{ | |
"code": "20-0093 TPM", | |
"name": "Satin Chemise", | |
"rgb": { | |
"r": 219, | |
"g": 192, | |
"b": 175 | |
}, | |
"positionInBook": 92 | |
}, | |
{ | |
"code": "20-0094 TPM", | |
"name": "Rose Gold", | |
"rgb": { | |
"r": 231, | |
"g": 178, | |
"b": 164 | |
}, | |
"positionInBook": 93 | |
}, | |
{ | |
"code": "20-0095 TPM", | |
"name": "Sloe Gin Fizz", | |
"rgb": { | |
"r": 169, | |
"g": 127, | |
"b": 118 | |
}, | |
"positionInBook": 94 | |
}, | |
{ | |
"code": "20-0096 TPM", | |
"name": "Cellophane", | |
"rgb": { | |
"r": 175, | |
"g": 161, | |
"b": 156 | |
}, | |
"positionInBook": 95 | |
}, | |
{ | |
"code": "20-0097 TPM", | |
"name": "Agave Nectar", | |
"rgb": { | |
"r": 163, | |
"g": 121, | |
"b": 105 | |
}, | |
"positionInBook": 96 | |
}, | |
{ | |
"code": "20-0098 TPM", | |
"name": "Penny Loafer", | |
"rgb": { | |
"r": 108, | |
"g": 77, | |
"b": 74 | |
}, | |
"positionInBook": 97 | |
}, | |
{ | |
"code": "20-0099 TPM", | |
"name": "Silk Tie Taupe", | |
"rgb": { | |
"r": 141, | |
"g": 118, | |
"b": 99 | |
}, | |
"positionInBook": 98 | |
}, | |
{ | |
"code": "20-0100 TPM", | |
"name": "Phantom", | |
"rgb": { | |
"r": 126, | |
"g": 109, | |
"b": 98 | |
}, | |
"positionInBook": 99 | |
}, | |
{ | |
"code": "20-0101 TPM", | |
"name": "Shadow Sheen", | |
"rgb": { | |
"r": 103, | |
"g": 90, | |
"b": 83 | |
}, | |
"positionInBook": 100 | |
}, | |
{ | |
"code": "20-0102 TPM", | |
"name": "Cherries Jubilee", | |
"rgb": { | |
"r": 90, | |
"g": 44, | |
"b": 54 | |
}, | |
"positionInBook": 101 | |
}, | |
{ | |
"code": "20-0103 TPM", | |
"name": "Intimate Pink", | |
"rgb": { | |
"r": 244, | |
"g": 222, | |
"b": 227 | |
}, | |
"positionInBook": 102 | |
}, | |
{ | |
"code": "20-0104 TPM", | |
"name": "Tutu Pink", | |
"rgb": { | |
"r": 233, | |
"g": 203, | |
"b": 215 | |
}, | |
"positionInBook": 103 | |
}, | |
{ | |
"code": "20-0105 TPM", | |
"name": "Corsage", | |
"rgb": { | |
"r": 216, | |
"g": 144, | |
"b": 176 | |
}, | |
"positionInBook": 104 | |
}, | |
{ | |
"code": "20-0106 TPM", | |
"name": "Anemonium", | |
"rgb": { | |
"r": 190, | |
"g": 90, | |
"b": 127 | |
}, | |
"positionInBook": 105 | |
}, | |
{ | |
"code": "20-0107 TPM", | |
"name": "Lady Slipper", | |
"rgb": { | |
"r": 180, | |
"g": 102, | |
"b": 138 | |
}, | |
"positionInBook": 106 | |
}, | |
{ | |
"code": "20-0108 TPM", | |
"name": "Pixie", | |
"rgb": { | |
"r": 199, | |
"g": 158, | |
"b": 181 | |
}, | |
"positionInBook": 107 | |
}, | |
{ | |
"code": "20-0109 TPM", | |
"name": "Carnival", | |
"rgb": { | |
"r": 199, | |
"g": 82, | |
"b": 140 | |
}, | |
"positionInBook": 108 | |
}, | |
{ | |
"code": "20-0110 TPM", | |
"name": "Sparkling Fuchsia", | |
"rgb": { | |
"r": 157, | |
"g": 34, | |
"b": 93 | |
}, | |
"positionInBook": 109 | |
}, | |
{ | |
"code": "20-0111 TPM", | |
"name": "Vitality", | |
"rgb": { | |
"r": 128, | |
"g": 20, | |
"b": 76 | |
}, | |
"positionInBook": 110 | |
}, | |
{ | |
"code": "20-0112 TPM", | |
"name": "Celebration", | |
"rgb": { | |
"r": 130, | |
"g": 0, | |
"b": 67 | |
}, | |
"positionInBook": 111 | |
}, | |
{ | |
"code": "20-0113 TPM", | |
"name": "Glistening Grape", | |
"rgb": { | |
"r": 106, | |
"g": 26, | |
"b": 76 | |
}, | |
"positionInBook": 112 | |
}, | |
{ | |
"code": "20-0114 TPM", | |
"name": "Magenta Lacquer", | |
"rgb": { | |
"r": 149, | |
"g": 17, | |
"b": 108 | |
}, | |
"positionInBook": 113 | |
}, | |
{ | |
"code": "20-0115 TPM", | |
"name": "Power Pink", | |
"rgb": { | |
"r": 193, | |
"g": 167, | |
"b": 183 | |
}, | |
"positionInBook": 114 | |
}, | |
{ | |
"code": "20-0116 TPM", | |
"name": "Hocus Pocus", | |
"rgb": { | |
"r": 167, | |
"g": 140, | |
"b": 173 | |
}, | |
"positionInBook": 115 | |
}, | |
{ | |
"code": "20-0117 TPM", | |
"name": "Lavender Oil", | |
"rgb": { | |
"r": 130, | |
"g": 83, | |
"b": 124 | |
}, | |
"positionInBook": 116 | |
}, | |
{ | |
"code": "20-0118 TPM", | |
"name": "Scottish Thistle", | |
"rgb": { | |
"r": 144, | |
"g": 75, | |
"b": 140 | |
}, | |
"positionInBook": 117 | |
}, | |
{ | |
"code": "20-0119 TPM", | |
"name": "Mystic Vibes", | |
"rgb": { | |
"r": 90, | |
"g": 31, | |
"b": 81 | |
}, | |
"positionInBook": 118 | |
}, | |
{ | |
"code": "20-0120 TPM", | |
"name": "Rose Onyx", | |
"rgb": { | |
"r": 73, | |
"g": 20, | |
"b": 66 | |
}, | |
"positionInBook": 119 | |
}, | |
{ | |
"code": "20-0121 TPM", | |
"name": "Pretty in Pink", | |
"rgb": { | |
"r": 162, | |
"g": 138, | |
"b": 154 | |
}, | |
"positionInBook": 120 | |
}, | |
{ | |
"code": "20-0122 TPM", | |
"name": "Luscious Grape", | |
"rgb": { | |
"r": 98, | |
"g": 80, | |
"b": 93 | |
}, | |
"positionInBook": 121 | |
}, | |
{ | |
"code": "20-0123 TPM", | |
"name": "Queen of Night", | |
"rgb": { | |
"r": 64, | |
"g": 37, | |
"b": 51 | |
}, | |
"positionInBook": 122 | |
}, | |
{ | |
"code": "20-0124 TPM", | |
"name": "Aubergine Gleam", | |
"rgb": { | |
"r": 48, | |
"g": 23, | |
"b": 40 | |
}, | |
"positionInBook": 123 | |
}, | |
{ | |
"code": "20-0125 TPM", | |
"name": "Danburite", | |
"rgb": { | |
"r": 207, | |
"g": 206, | |
"b": 216 | |
}, | |
"positionInBook": 124 | |
}, | |
{ | |
"code": "20-0126 TPM", | |
"name": "Sterling Lavender", | |
"rgb": { | |
"r": 156, | |
"g": 155, | |
"b": 172 | |
}, | |
"positionInBook": 125 | |
}, | |
{ | |
"code": "20-0127 TPM", | |
"name": "Part Ribbon", | |
"rgb": { | |
"r": 91, | |
"g": 74, | |
"b": 140 | |
}, | |
"positionInBook": 126 | |
}, | |
{ | |
"code": "20-0128 TPM", | |
"name": "Violaceous", | |
"rgb": { | |
"r": 115, | |
"g": 115, | |
"b": 151 | |
}, | |
"positionInBook": 127 | |
}, | |
{ | |
"code": "20-0129 TPM", | |
"name": "Silver shadow", | |
"rgb": { | |
"r": 147, | |
"g": 144, | |
"b": 151 | |
}, | |
"positionInBook": 128 | |
}, | |
{ | |
"code": "20-0130 TPM", | |
"name": "Lavender Shimmer", | |
"rgb": { | |
"r": 178, | |
"g": 175, | |
"b": 205 | |
}, | |
"positionInBook": 129 | |
}, | |
{ | |
"code": "20-0131 TPM", | |
"name": "Purple Sequin", | |
"rgb": { | |
"r": 78, | |
"g": 34, | |
"b": 114 | |
}, | |
"positionInBook": 130 | |
}, | |
{ | |
"code": "20-0132 TPM", | |
"name": "Plum Violet ", | |
"rgb": { | |
"r": 42, | |
"g": 15, | |
"b": 56 | |
}, | |
"positionInBook": 131 | |
}, | |
{ | |
"code": "20-0133 TPM", | |
"name": "Kir Royale", | |
"rgb": { | |
"r": 40, | |
"g": 14, | |
"b": 64 | |
}, | |
"positionInBook": 132 | |
}, | |
{ | |
"code": "20-0134 TPM", | |
"name": "Mystic Wand", | |
"rgb": { | |
"r": 58, | |
"g": 51, | |
"b": 104 | |
}, | |
"positionInBook": 133 | |
}, | |
{ | |
"code": "20-0135 TPM", | |
"name": "Violet Femme", | |
"rgb": { | |
"r": 31, | |
"g": 21, | |
"b": 57 | |
}, | |
"positionInBook": 134 | |
}, | |
{ | |
"code": "20-0136 TPM", | |
"name": "Contrail", | |
"rgb": { | |
"r": 111, | |
"g": 117, | |
"b": 126 | |
}, | |
"positionInBook": 135 | |
}, | |
{ | |
"code": "20-0137 TPM", | |
"name": "Black Oyster", | |
"rgb": { | |
"r": 54, | |
"g": 61, | |
"b": 74 | |
}, | |
"positionInBook": 136 | |
}, | |
{ | |
"code": "20-0138 TPM", | |
"name": "Blue Giant", | |
"rgb": { | |
"r": 52, | |
"g": 64, | |
"b": 68 | |
}, | |
"positionInBook": 137 | |
}, | |
{ | |
"code": "20-0139 TPM", | |
"name": "Bleu Clair", | |
"rgb": { | |
"r": 197, | |
"g": 216, | |
"b": 225 | |
}, | |
"positionInBook": 138 | |
}, | |
{ | |
"code": "20-0140 TPM", | |
"name": "Slipstream", | |
"rgb": { | |
"r": 91, | |
"g": 104, | |
"b": 124 | |
}, | |
"positionInBook": 139 | |
}, | |
{ | |
"code": "20-0141 TPM", | |
"name": "Azurite", | |
"rgb": { | |
"r": 27, | |
"g": 43, | |
"b": 65 | |
}, | |
"positionInBook": 140 | |
}, | |
{ | |
"code": "20-0142 TPM", | |
"name": "Neon Navy", | |
"rgb": { | |
"r": 19, | |
"g": 25, | |
"b": 54 | |
}, | |
"positionInBook": 141 | |
}, | |
{ | |
"code": "20-0143 TPM", | |
"name": "Polar Cap", | |
"rgb": { | |
"r": 161, | |
"g": 185, | |
"b": 195 | |
}, | |
"positionInBook": 142 | |
}, | |
{ | |
"code": "20-0144 TPM", | |
"name": "Laser Beam", | |
"rgb": { | |
"r": 34, | |
"g": 52, | |
"b": 116 | |
}, | |
"positionInBook": 143 | |
}, | |
{ | |
"code": "20-0145 TPM", | |
"name": "Galactica", | |
"rgb": { | |
"r": 17, | |
"g": 44, | |
"b": 86 | |
}, | |
"positionInBook": 144 | |
}, | |
{ | |
"code": "20-0146 TPM", | |
"name": "Magnetic Blue", | |
"rgb": { | |
"r": 5, | |
"g": 48, | |
"b": 140 | |
}, | |
"positionInBook": 145 | |
}, | |
{ | |
"code": "20-0147 TPM", | |
"name": "Diode Blue", | |
"rgb": { | |
"r": 0, | |
"g": 69, | |
"b": 172 | |
}, | |
"positionInBook": 146 | |
}, | |
{ | |
"code": "20-0148 TPM", | |
"name": "Polished Turquoise", | |
"rgb": { | |
"r": 0, | |
"g": 121, | |
"b": 155 | |
}, | |
"positionInBook": 147 | |
}, | |
{ | |
"code": "20-0149 TPM", | |
"name": "Relucent Blue", | |
"rgb": { | |
"r": 27, | |
"g": 141, | |
"b": 167 | |
}, | |
"positionInBook": 148 | |
}, | |
{ | |
"code": "20-0150 TPM", | |
"name": "Heavenly", | |
"rgb": { | |
"r": 76, | |
"g": 150, | |
"b": 179 | |
}, | |
"positionInBook": 149 | |
}, | |
{ | |
"code": "20-0151 TPM", | |
"name": "Blue Morpho", | |
"rgb": { | |
"r": 11, | |
"g": 116, | |
"b": 151 | |
}, | |
"positionInBook": 150 | |
}, | |
{ | |
"code": "20-0152 TPM", | |
"name": "Han Blue", | |
"rgb": { | |
"r": 151, | |
"g": 187, | |
"b": 216 | |
}, | |
"positionInBook": 151 | |
}, | |
{ | |
"code": "20-0153 TPM", | |
"name": "Aquatopia", | |
"rgb": { | |
"r": 91, | |
"g": 131, | |
"b": 174 | |
}, | |
"positionInBook": 152 | |
}, | |
{ | |
"code": "20-0154 TPM", | |
"name": "Rolling Waters", | |
"rgb": { | |
"r": 103, | |
"g": 150, | |
"b": 205 | |
}, | |
"positionInBook": 153 | |
}, | |
{ | |
"code": "20-0155 TPM", | |
"name": "Moody Blue", | |
"rgb": { | |
"r": 26, | |
"g": 70, | |
"b": 139 | |
}, | |
"positionInBook": 154 | |
}, | |
{ | |
"code": "20-0156 TPM", | |
"name": "Scintillating Sea", | |
"rgb": { | |
"r": 32, | |
"g": 95, | |
"b": 133 | |
}, | |
"positionInBook": 155 | |
}, | |
{ | |
"code": "20-0157 TPM", | |
"name": "Moonlit Blue", | |
"rgb": { | |
"r": 49, | |
"g": 126, | |
"b": 164 | |
}, | |
"positionInBook": 156 | |
}, | |
{ | |
"code": "20-0158 TPM", | |
"name": "Azul Marino", | |
"rgb": { | |
"r": 0, | |
"g": 68, | |
"b": 106 | |
}, | |
"positionInBook": 157 | |
}, | |
{ | |
"code": "20-0159 TPM", | |
"name": "Fantasy", | |
"rgb": { | |
"r": 0, | |
"g": 82, | |
"b": 137 | |
}, | |
"positionInBook": 158 | |
}, | |
{ | |
"code": "20-0160 TPM", | |
"name": "English Channel", | |
"rgb": { | |
"r": 0, | |
"g": 75, | |
"b": 116 | |
}, | |
"positionInBook": 159 | |
}, | |
{ | |
"code": "20-0161 TPM", | |
"name": "Beetle Wing", | |
"rgb": { | |
"r": 0, | |
"g": 55, | |
"b": 64 | |
}, | |
"positionInBook": 160 | |
}, | |
{ | |
"code": "20-0162 TPM", | |
"name": "Black Aqua", | |
"rgb": { | |
"r": 0, | |
"g": 47, | |
"b": 56 | |
}, | |
"positionInBook": 161 | |
}, | |
{ | |
"code": "20-0163 TPM", | |
"name": "Blue Snow", | |
"rgb": { | |
"r": 99, | |
"g": 133, | |
"b": 146 | |
}, | |
"positionInBook": 162 | |
}, | |
{ | |
"code": "20-0164 TPM", | |
"name": "Glass-Sea", | |
"rgb": { | |
"r": 139, | |
"g": 184, | |
"b": 186 | |
}, | |
"positionInBook": 163 | |
}, | |
{ | |
"code": "20-0165 TPM", | |
"name": "Breakers", | |
"rgb": { | |
"r": 154, | |
"g": 180, | |
"b": 181 | |
}, | |
"positionInBook": 164 | |
}, | |
{ | |
"code": "20-0166 TPM", | |
"name": "Thunderhead", | |
"rgb": { | |
"r": 38, | |
"g": 66, | |
"b": 79 | |
}, | |
"positionInBook": 165 | |
}, | |
{ | |
"code": "20-0167 TPM", | |
"name": "Steel Shards", | |
"rgb": { | |
"r": 53, | |
"g": 88, | |
"b": 104 | |
}, | |
"positionInBook": 166 | |
}, | |
{ | |
"code": "20-0168 TPM", | |
"name": "Rustic Turquoise", | |
"rgb": { | |
"r": 43, | |
"g": 94, | |
"b": 105 | |
}, | |
"positionInBook": 167 | |
}, | |
{ | |
"code": "20-0169 TPM", | |
"name": "Fairy Wing", | |
"rgb": { | |
"r": 118, | |
"g": 171, | |
"b": 162 | |
}, | |
"positionInBook": 168 | |
}, | |
{ | |
"code": "20-0170 TPM", | |
"name": "Mega Marine", | |
"rgb": { | |
"r": 0, | |
"g": 145, | |
"b": 138 | |
}, | |
"positionInBook": 169 | |
}, | |
{ | |
"code": "20-0171 TPM", | |
"name": "Space Cadet", | |
"rgb": { | |
"r": 0, | |
"g": 153, | |
"b": 166 | |
}, | |
"positionInBook": 170 | |
}, | |
{ | |
"code": "20-0172 TPM", | |
"name": "Maldivian", | |
"rgb": { | |
"r": 17, | |
"g": 124, | |
"b": 135 | |
}, | |
"positionInBook": 171 | |
}, | |
{ | |
"code": "20-0173 TPM", | |
"name": "Shagreen", | |
"rgb": { | |
"r": 4, | |
"g": 101, | |
"b": 107 | |
}, | |
"positionInBook": 172 | |
}, | |
{ | |
"code": "20-0174 TPM", | |
"name": "Cyber Leaf", | |
"rgb": { | |
"r": 0, | |
"g": 77, | |
"b": 71 | |
}, | |
"positionInBook": 173 | |
}, | |
{ | |
"code": "20-0175 TPM", | |
"name": "Jaded", | |
"rgb": { | |
"r": 0, | |
"g": 140, | |
"b": 115 | |
}, | |
"positionInBook": 174 | |
}, | |
{ | |
"code": "20-0176 TPM", | |
"name": "Green Glimmer", | |
"rgb": { | |
"r": 111, | |
"g": 146, | |
"b": 110 | |
}, | |
"positionInBook": 175 | |
}, | |
{ | |
"code": "20-0177 TPM", | |
"name": "Top o' the Mornin'", | |
"rgb": { | |
"r": 0, | |
"g": 162, | |
"b": 129 | |
}, | |
"positionInBook": 176 | |
}, | |
{ | |
"code": "20-0178 TPM", | |
"name": "Amphibious", | |
"rgb": { | |
"r": 64, | |
"g": 128, | |
"b": 108 | |
}, | |
"positionInBook": 177 | |
}, | |
{ | |
"code": "20-0179 TPM", | |
"name": "Leprechaun Dust", | |
"rgb": { | |
"r": 88, | |
"g": 149, | |
"b": 100 | |
}, | |
"positionInBook": 178 | |
}, | |
{ | |
"code": "20-0180 TPM", | |
"name": "Satin Moss", | |
"rgb": { | |
"r": 45, | |
"g": 71, | |
"b": 55 | |
}, | |
"positionInBook": 179 | |
}, | |
{ | |
"code": "20-0181 TPM", | |
"name": "Celtic Glow", | |
"rgb": { | |
"r": 0, | |
"g": 149, | |
"b": 98 | |
}, | |
"positionInBook": 180 | |
}, | |
{ | |
"code": "20-0182 TPM", | |
"name": "Racing Green", | |
"rgb": { | |
"r": 0, | |
"g": 43, | |
"b": 42 | |
}, | |
"positionInBook": 181 | |
}, | |
{ | |
"code": "20-0183 TPM", | |
"name": "Olive Branch", | |
"rgb": { | |
"r": 137, | |
"g": 131, | |
"b": 99 | |
}, | |
"positionInBook": 182 | |
}, | |
{ | |
"code": "20-0184 TPM", | |
"name": "Olivine", | |
"rgb": { | |
"r": 160, | |
"g": 156, | |
"b": 51 | |
}, | |
"positionInBook": 183 | |
}, | |
{ | |
"code": "20-0185 TPM", | |
"name": "Tortuga Bay", | |
"rgb": { | |
"r": 88, | |
"g": 131, | |
"b": 23 | |
}, | |
"positionInBook": 184 | |
}, | |
{ | |
"code": "20-0186 TPM", | |
"name": "Neon Nephrite", | |
"rgb": { | |
"r": 61, | |
"g": 140, | |
"b": 40 | |
}, | |
"positionInBook": 185 | |
}, | |
{ | |
"code": "20-0187 TPM", | |
"name": "Water Nymph", | |
"rgb": { | |
"r": 39, | |
"g": 128, | |
"b": 64 | |
}, | |
"positionInBook": 186 | |
}, | |
{ | |
"code": "20-0188 TPM", | |
"name": "Graphite", | |
"rgb": { | |
"r": 84, | |
"g": 84, | |
"b": 57 | |
}, | |
"positionInBook": 187 | |
}, | |
{ | |
"code": "20-0189 TPM", | |
"name": "Dewy Mulch", | |
"rgb": { | |
"r": 79, | |
"g": 76, | |
"b": 57 | |
}, | |
"positionInBook": 188 | |
}, | |
{ | |
"code": "20-0190 TPM", | |
"name": "Perch", | |
"rgb": { | |
"r": 56, | |
"g": 62, | |
"b": 51 | |
}, | |
"positionInBook": 189 | |
}, | |
{ | |
"code": "20-0191 TPM", | |
"name": "Snake in the Grass", | |
"rgb": { | |
"r": 40, | |
"g": 49, | |
"b": 45 | |
}, | |
"positionInBook": 190 | |
}, | |
{ | |
"code": "20-0192 TPM", | |
"name": "Mantilla Comb", | |
"rgb": { | |
"r": 38, | |
"g": 42, | |
"b": 42 | |
}, | |
"positionInBook": 191 | |
}, | |
{ | |
"code": "20-0193 TPM", | |
"name": "Lichen Mist", | |
"rgb": { | |
"r": 75, | |
"g": 86, | |
"b": 83 | |
}, | |
"positionInBook": 192 | |
}, | |
{ | |
"code": "20-0194 TPM", | |
"name": "Blackened Blue", | |
"rgb": { | |
"r": 13, | |
"g": 23, | |
"b": 26 | |
}, | |
"positionInBook": 193 | |
}, | |
{ | |
"code": "20-0195 TPM", | |
"name": "Midnight Sky", | |
"rgb": { | |
"r": 22, | |
"g": 21, | |
"b": 29 | |
}, | |
"positionInBook": 194 | |
}, | |
{ | |
"code": "20-0196 TPM", | |
"name": "Nebulosity", | |
"rgb": { | |
"r": 28, | |
"g": 28, | |
"b": 27 | |
}, | |
"positionInBook": 195 | |
}, | |
{ | |
"code": "20-0197 TPM", | |
"name": "Blackberry Syrup", | |
"rgb": { | |
"r": 42, | |
"g": 31, | |
"b": 33 | |
}, | |
"positionInBook": 196 | |
}, | |
{ | |
"code": "20-0198 TPM", | |
"name": "Moondrop Grapes", | |
"rgb": { | |
"r": 28, | |
"g": 22, | |
"b": 25 | |
}, | |
"positionInBook": 197 | |
}, | |
{ | |
"code": "20-0199 TPM", | |
"name": "Darkest Hour", | |
"rgb": { | |
"r": 31, | |
"g": 31, | |
"b": 33 | |
}, | |
"positionInBook": 198 | |
}, | |
{ | |
"code": "20-0200 TPM", | |
"name": "Gunpowder", | |
"rgb": { | |
"r": 24, | |
"g": 24, | |
"b": 26 | |
}, | |
"positionInBook": 199 | |
} | |
] | |
}, | |
{ | |
"id": "pantoneMetallicsSolidCoatedM2", | |
"colors": [ | |
{ | |
"code": "10101 C", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 213, | |
"b": 212 | |
}, | |
"positionInBook": 0 | |
}, | |
{ | |
"code": "10102 C", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 197, | |
"b": 196 | |
}, | |
"positionInBook": 1 | |
}, | |
{ | |
"code": "10103 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 187, | |
"b": 187 | |
}, | |
"positionInBook": 2 | |
}, | |
{ | |
"code": "10104 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 176, | |
"b": 177 | |
}, | |
"positionInBook": 3 | |
}, | |
{ | |
"code": "10105 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 173, | |
"b": 174 | |
}, | |
"positionInBook": 4 | |
}, | |
{ | |
"code": "Silver 10077 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 169, | |
"b": 170 | |
}, | |
"positionInBook": 5 | |
}, | |
{ | |
"code": "10106 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 171, | |
"b": 116 | |
}, | |
"positionInBook": 6 | |
}, | |
{ | |
"code": "10107 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 170, | |
"b": 98 | |
}, | |
"positionInBook": 7 | |
}, | |
{ | |
"code": "10108 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 171, | |
"b": 79 | |
}, | |
"positionInBook": 8 | |
}, | |
{ | |
"code": "10109 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 170, | |
"b": 60 | |
}, | |
"positionInBook": 9 | |
}, | |
{ | |
"code": "10110 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 171, | |
"b": 38 | |
}, | |
"positionInBook": 10 | |
}, | |
{ | |
"code": "10111 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 176, | |
"b": 0 | |
}, | |
"positionInBook": 11 | |
}, | |
{ | |
"code": "10112 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 170, | |
"b": 136 | |
}, | |
"positionInBook": 12 | |
}, | |
{ | |
"code": "10113 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 169, | |
"b": 112 | |
}, | |
"positionInBook": 13 | |
}, | |
{ | |
"code": "10114 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 167, | |
"b": 92 | |
}, | |
"positionInBook": 14 | |
}, | |
{ | |
"code": "10115 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 165, | |
"b": 73 | |
}, | |
"positionInBook": 15 | |
}, | |
{ | |
"code": "10116 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 165, | |
"b": 54 | |
}, | |
"positionInBook": 16 | |
}, | |
{ | |
"code": "10117 C", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 163, | |
"b": 31 | |
}, | |
"positionInBook": 17 | |
}, | |
{ | |
"code": "10118 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 164, | |
"b": 111 | |
}, | |
"positionInBook": 18 | |
}, | |
{ | |
"code": "10119 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 162, | |
"b": 92 | |
}, | |
"positionInBook": 19 | |
}, | |
{ | |
"code": "10120 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 159, | |
"b": 74 | |
}, | |
"positionInBook": 20 | |
}, | |
{ | |
"code": "10121 C", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 155, | |
"b": 55 | |
}, | |
"positionInBook": 21 | |
}, | |
{ | |
"code": "10122 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 151, | |
"b": 36 | |
}, | |
"positionInBook": 22 | |
}, | |
{ | |
"code": "10123 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 148, | |
"b": 3 | |
}, | |
"positionInBook": 23 | |
}, | |
{ | |
"code": "10124 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 162, | |
"b": 117 | |
}, | |
"positionInBook": 24 | |
}, | |
{ | |
"code": "10125 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 157, | |
"b": 98 | |
}, | |
"positionInBook": 25 | |
}, | |
{ | |
"code": "10126 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 151, | |
"b": 81 | |
}, | |
"positionInBook": 26 | |
}, | |
{ | |
"code": "10127 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 145, | |
"b": 66 | |
}, | |
"positionInBook": 27 | |
}, | |
{ | |
"code": "10128 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 139, | |
"b": 51 | |
}, | |
"positionInBook": 28 | |
}, | |
{ | |
"code": "10129 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 133, | |
"b": 36 | |
}, | |
"positionInBook": 29 | |
}, | |
{ | |
"code": "10130 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 144, | |
"b": 112 | |
}, | |
"positionInBook": 30 | |
}, | |
{ | |
"code": "10131 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 133, | |
"b": 92 | |
}, | |
"positionInBook": 31 | |
}, | |
{ | |
"code": "10132 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 124, | |
"b": 76 | |
}, | |
"positionInBook": 32 | |
}, | |
{ | |
"code": "10133 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 114, | |
"b": 59 | |
}, | |
"positionInBook": 33 | |
}, | |
{ | |
"code": "10134 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 105, | |
"b": 46 | |
}, | |
"positionInBook": 34 | |
}, | |
{ | |
"code": "10135 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 98, | |
"b": 33 | |
}, | |
"positionInBook": 35 | |
}, | |
{ | |
"code": "10136 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 155, | |
"b": 137 | |
}, | |
"positionInBook": 36 | |
}, | |
{ | |
"code": "10137 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 143, | |
"b": 114 | |
}, | |
"positionInBook": 37 | |
}, | |
{ | |
"code": "10138 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 131, | |
"b": 94 | |
}, | |
"positionInBook": 38 | |
}, | |
{ | |
"code": "10139 C", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 121, | |
"b": 77 | |
}, | |
"positionInBook": 39 | |
}, | |
{ | |
"code": "10140 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 112, | |
"b": 64 | |
}, | |
"positionInBook": 40 | |
}, | |
{ | |
"code": "10141 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 102, | |
"b": 50 | |
}, | |
"positionInBook": 41 | |
}, | |
{ | |
"code": "10142 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 142, | |
"b": 108 | |
}, | |
"positionInBook": 42 | |
}, | |
{ | |
"code": "10143 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 132, | |
"b": 89 | |
}, | |
"positionInBook": 43 | |
}, | |
{ | |
"code": "10144 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 122, | |
"b": 71 | |
}, | |
"positionInBook": 44 | |
}, | |
{ | |
"code": "10145 C", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 114, | |
"b": 55 | |
}, | |
"positionInBook": 45 | |
}, | |
{ | |
"code": "10146 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 105, | |
"b": 38 | |
}, | |
"positionInBook": 46 | |
}, | |
{ | |
"code": "10147 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 97, | |
"b": 21 | |
}, | |
"positionInBook": 47 | |
}, | |
{ | |
"code": "10401 C", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 139, | |
"b": 34 | |
}, | |
"positionInBook": 48 | |
}, | |
{ | |
"code": "10402 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 143, | |
"b": 78 | |
}, | |
"positionInBook": 49 | |
}, | |
{ | |
"code": "10403 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 136, | |
"b": 85 | |
}, | |
"positionInBook": 50 | |
}, | |
{ | |
"code": "10404 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 144, | |
"b": 106 | |
}, | |
"positionInBook": 51 | |
}, | |
{ | |
"code": "10405 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 151, | |
"b": 115 | |
}, | |
"positionInBook": 52 | |
}, | |
{ | |
"code": "10406 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 156, | |
"b": 125 | |
}, | |
"positionInBook": 53 | |
}, | |
{ | |
"code": "10407 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 161, | |
"b": 131 | |
}, | |
"positionInBook": 54 | |
}, | |
{ | |
"code": "10408 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 146, | |
"b": 121 | |
}, | |
"positionInBook": 55 | |
}, | |
{ | |
"code": "10409 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 118, | |
"b": 98 | |
}, | |
"positionInBook": 56 | |
}, | |
{ | |
"code": "10410 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 107, | |
"b": 102 | |
}, | |
"positionInBook": 57 | |
}, | |
{ | |
"code": "10411 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 132, | |
"b": 127 | |
}, | |
"positionInBook": 58 | |
}, | |
{ | |
"code": "Rose Gold 10412 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 145, | |
"b": 143 | |
}, | |
"positionInBook": 59 | |
}, | |
{ | |
"code": "10148 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 135, | |
"b": 123 | |
}, | |
"positionInBook": 60 | |
}, | |
{ | |
"code": "10149 C", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 123, | |
"b": 106 | |
}, | |
"positionInBook": 61 | |
}, | |
{ | |
"code": "10150 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 110, | |
"b": 88 | |
}, | |
"positionInBook": 62 | |
}, | |
{ | |
"code": "10151 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 100, | |
"b": 72 | |
}, | |
"positionInBook": 63 | |
}, | |
{ | |
"code": "10152 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 91, | |
"b": 57 | |
}, | |
"positionInBook": 64 | |
}, | |
{ | |
"code": "10153 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 82, | |
"b": 42 | |
}, | |
"positionInBook": 65 | |
}, | |
{ | |
"code": "10154 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 150, | |
"b": 144 | |
}, | |
"positionInBook": 66 | |
}, | |
{ | |
"code": "10155 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 134, | |
"b": 124 | |
}, | |
"positionInBook": 67 | |
}, | |
{ | |
"code": "10156 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 119, | |
"b": 108 | |
}, | |
"positionInBook": 68 | |
}, | |
{ | |
"code": "10157 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 105, | |
"b": 91 | |
}, | |
"positionInBook": 69 | |
}, | |
{ | |
"code": "10158 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 91, | |
"b": 77 | |
}, | |
"positionInBook": 70 | |
}, | |
{ | |
"code": "10159 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 79, | |
"b": 65 | |
}, | |
"positionInBook": 71 | |
}, | |
{ | |
"code": "10413 C", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 74, | |
"b": 76 | |
}, | |
"positionInBook": 72 | |
}, | |
{ | |
"code": "10414 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 38, | |
"b": 89 | |
}, | |
"positionInBook": 73 | |
}, | |
{ | |
"code": "10415 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 65, | |
"b": 69 | |
}, | |
"positionInBook": 74 | |
}, | |
{ | |
"code": "10416 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 41, | |
"b": 46 | |
}, | |
"positionInBook": 75 | |
}, | |
{ | |
"code": "10417 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 47, | |
"b": 53 | |
}, | |
"positionInBook": 76 | |
}, | |
{ | |
"code": "10418 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 53, | |
"b": 54 | |
}, | |
"positionInBook": 77 | |
}, | |
{ | |
"code": "10160 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 126, | |
"b": 144 | |
}, | |
"positionInBook": 78 | |
}, | |
{ | |
"code": "10161 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 111, | |
"b": 130 | |
}, | |
"positionInBook": 79 | |
}, | |
{ | |
"code": "10162 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 96, | |
"b": 116 | |
}, | |
"positionInBook": 80 | |
}, | |
{ | |
"code": "10163 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 84, | |
"b": 102 | |
}, | |
"positionInBook": 81 | |
}, | |
{ | |
"code": "10164 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 75, | |
"b": 88 | |
}, | |
"positionInBook": 82 | |
}, | |
{ | |
"code": "10165 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 65, | |
"b": 73 | |
}, | |
"positionInBook": 83 | |
}, | |
{ | |
"code": "10166 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 123, | |
"b": 147 | |
}, | |
"positionInBook": 84 | |
}, | |
{ | |
"code": "10167 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 107, | |
"b": 136 | |
}, | |
"positionInBook": 85 | |
}, | |
{ | |
"code": "10168 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 90, | |
"b": 124 | |
}, | |
"positionInBook": 86 | |
}, | |
{ | |
"code": "10169 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 75, | |
"b": 112 | |
}, | |
"positionInBook": 87 | |
}, | |
{ | |
"code": "10170 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 61, | |
"b": 99 | |
}, | |
"positionInBook": 88 | |
}, | |
{ | |
"code": "10171 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 45, | |
"b": 84 | |
}, | |
"positionInBook": 89 | |
}, | |
{ | |
"code": "10172 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 125, | |
"b": 156 | |
}, | |
"positionInBook": 90 | |
}, | |
{ | |
"code": "10173 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 109, | |
"b": 149 | |
}, | |
"positionInBook": 91 | |
}, | |
{ | |
"code": "10174 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 95, | |
"b": 140 | |
}, | |
"positionInBook": 92 | |
}, | |
{ | |
"code": "10175 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 80, | |
"b": 131 | |
}, | |
"positionInBook": 93 | |
}, | |
{ | |
"code": "10176 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 66, | |
"b": 121 | |
}, | |
"positionInBook": 94 | |
}, | |
{ | |
"code": "10177 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 50, | |
"b": 111 | |
}, | |
"positionInBook": 95 | |
}, | |
{ | |
"code": "10178 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 139, | |
"b": 163 | |
}, | |
"positionInBook": 96 | |
}, | |
{ | |
"code": "10179 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 125, | |
"b": 157 | |
}, | |
"positionInBook": 97 | |
}, | |
{ | |
"code": "10180 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 112, | |
"b": 151 | |
}, | |
"positionInBook": 98 | |
}, | |
{ | |
"code": "10181 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 98, | |
"b": 143 | |
}, | |
"positionInBook": 99 | |
}, | |
{ | |
"code": "10182 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 84, | |
"b": 135 | |
}, | |
"positionInBook": 100 | |
}, | |
{ | |
"code": "10183 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 70, | |
"b": 128 | |
}, | |
"positionInBook": 101 | |
}, | |
{ | |
"code": "10419 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 127, | |
"b": 132 | |
}, | |
"positionInBook": 102 | |
}, | |
{ | |
"code": "10420 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 122, | |
"b": 138 | |
}, | |
"positionInBook": 103 | |
}, | |
{ | |
"code": "10421 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 68, | |
"b": 111 | |
}, | |
"positionInBook": 104 | |
}, | |
{ | |
"code": "10422 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 51, | |
"b": 102 | |
}, | |
"positionInBook": 105 | |
}, | |
{ | |
"code": "10423 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 76, | |
"b": 131 | |
}, | |
"positionInBook": 106 | |
}, | |
{ | |
"code": "10424 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 39, | |
"b": 105 | |
}, | |
"positionInBook": 107 | |
}, | |
{ | |
"code": "10184 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 144, | |
"b": 169 | |
}, | |
"positionInBook": 108 | |
}, | |
{ | |
"code": "10185 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 131, | |
"b": 166 | |
}, | |
"positionInBook": 109 | |
}, | |
{ | |
"code": "10186 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 117, | |
"b": 160 | |
}, | |
"positionInBook": 110 | |
}, | |
{ | |
"code": "10187 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 104, | |
"b": 156 | |
}, | |
"positionInBook": 111 | |
}, | |
{ | |
"code": "10188 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 91, | |
"b": 151 | |
}, | |
"positionInBook": 112 | |
}, | |
{ | |
"code": "10189 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 77, | |
"b": 146 | |
}, | |
"positionInBook": 113 | |
}, | |
{ | |
"code": "10190 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 149, | |
"b": 157 | |
}, | |
"positionInBook": 114 | |
}, | |
{ | |
"code": "10191 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 134, | |
"b": 145 | |
}, | |
"positionInBook": 115 | |
}, | |
{ | |
"code": "10192 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 120, | |
"b": 133 | |
}, | |
"positionInBook": 116 | |
}, | |
{ | |
"code": "10193 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 106, | |
"b": 122 | |
}, | |
"positionInBook": 117 | |
}, | |
{ | |
"code": "10194 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 92, | |
"b": 110 | |
}, | |
"positionInBook": 118 | |
}, | |
{ | |
"code": "10195 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 78, | |
"b": 96 | |
}, | |
"positionInBook": 119 | |
}, | |
{ | |
"code": "10196 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 144, | |
"b": 166 | |
}, | |
"positionInBook": 120 | |
}, | |
{ | |
"code": "10197 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 125, | |
"b": 158 | |
}, | |
"positionInBook": 121 | |
}, | |
{ | |
"code": "10198 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 107, | |
"b": 149 | |
}, | |
"positionInBook": 122 | |
}, | |
{ | |
"code": "10199 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 92, | |
"b": 140 | |
}, | |
"positionInBook": 123 | |
}, | |
{ | |
"code": "10200 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 77, | |
"b": 132 | |
}, | |
"positionInBook": 124 | |
}, | |
{ | |
"code": "10201 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 63, | |
"b": 122 | |
}, | |
"positionInBook": 125 | |
}, | |
{ | |
"code": "10202 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 126, | |
"b": 158 | |
}, | |
"positionInBook": 126 | |
}, | |
{ | |
"code": "10203 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 109, | |
"b": 149 | |
}, | |
"positionInBook": 127 | |
}, | |
{ | |
"code": "10204 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 95, | |
"b": 142 | |
}, | |
"positionInBook": 128 | |
}, | |
{ | |
"code": "10205 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 80, | |
"b": 132 | |
}, | |
"positionInBook": 129 | |
}, | |
{ | |
"code": "10206 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 67, | |
"b": 123 | |
}, | |
"positionInBook": 130 | |
}, | |
{ | |
"code": "10207 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 53, | |
"b": 113 | |
}, | |
"positionInBook": 131 | |
}, | |
{ | |
"code": "10208 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 139, | |
"b": 168 | |
}, | |
"positionInBook": 132 | |
}, | |
{ | |
"code": "10209 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 124, | |
"b": 164 | |
}, | |
"positionInBook": 133 | |
}, | |
{ | |
"code": "10210 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 110, | |
"b": 159 | |
}, | |
"positionInBook": 134 | |
}, | |
{ | |
"code": "10211 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 96, | |
"b": 154 | |
}, | |
"positionInBook": 135 | |
}, | |
{ | |
"code": "10212 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 83, | |
"b": 150 | |
}, | |
"positionInBook": 136 | |
}, | |
{ | |
"code": "10213 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 68, | |
"b": 144 | |
}, | |
"positionInBook": 137 | |
}, | |
{ | |
"code": "10214 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 125, | |
"b": 166 | |
}, | |
"positionInBook": 138 | |
}, | |
{ | |
"code": "10215 C", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 108, | |
"b": 162 | |
}, | |
"positionInBook": 139 | |
}, | |
{ | |
"code": "10216 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 93, | |
"b": 157 | |
}, | |
"positionInBook": 140 | |
}, | |
{ | |
"code": "10217 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 77, | |
"b": 151 | |
}, | |
"positionInBook": 141 | |
}, | |
{ | |
"code": "10218 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 61, | |
"b": 145 | |
}, | |
"positionInBook": 142 | |
}, | |
{ | |
"code": "10219 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 45, | |
"b": 138 | |
}, | |
"positionInBook": 143 | |
}, | |
{ | |
"code": "10220 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 148, | |
"b": 171 | |
}, | |
"positionInBook": 144 | |
}, | |
{ | |
"code": "10221 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 135, | |
"b": 167 | |
}, | |
"positionInBook": 145 | |
}, | |
{ | |
"code": "10222 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 124, | |
"b": 164 | |
}, | |
"positionInBook": 146 | |
}, | |
{ | |
"code": "10223 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 111, | |
"b": 160 | |
}, | |
"positionInBook": 147 | |
}, | |
{ | |
"code": "10224 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 99, | |
"b": 156 | |
}, | |
"positionInBook": 148 | |
}, | |
{ | |
"code": "10225 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 88, | |
"b": 153 | |
}, | |
"positionInBook": 149 | |
}, | |
{ | |
"code": "10226 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 147, | |
"b": 170 | |
}, | |
"positionInBook": 150 | |
}, | |
{ | |
"code": "10227 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 137, | |
"b": 168 | |
}, | |
"positionInBook": 151 | |
}, | |
{ | |
"code": "10228 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 126, | |
"b": 165 | |
}, | |
"positionInBook": 152 | |
}, | |
{ | |
"code": "10229 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 114, | |
"b": 161 | |
}, | |
"positionInBook": 153 | |
}, | |
{ | |
"code": "10230 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 101, | |
"b": 156 | |
}, | |
"positionInBook": 154 | |
}, | |
{ | |
"code": "10231 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 90, | |
"b": 154 | |
}, | |
"positionInBook": 155 | |
}, | |
{ | |
"code": "10232 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 130, | |
"b": 163 | |
}, | |
"positionInBook": 156 | |
}, | |
{ | |
"code": "10233 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 115, | |
"b": 157 | |
}, | |
"positionInBook": 157 | |
}, | |
{ | |
"code": "10234 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 100, | |
"b": 150 | |
}, | |
"positionInBook": 158 | |
}, | |
{ | |
"code": "10235 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 86, | |
"b": 142 | |
}, | |
"positionInBook": 159 | |
}, | |
{ | |
"code": "10236 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 72, | |
"b": 135 | |
}, | |
"positionInBook": 160 | |
}, | |
{ | |
"code": "10237 C", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 77, | |
"b": 138 | |
}, | |
"positionInBook": 161 | |
}, | |
{ | |
"code": "10425 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 80, | |
"b": 146 | |
}, | |
"positionInBook": 162 | |
}, | |
{ | |
"code": "10426 C", | |
"name": null, | |
"rgb": { | |
"r": 53, | |
"g": 69, | |
"b": 118 | |
}, | |
"positionInBook": 163 | |
}, | |
{ | |
"code": "10427 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 60, | |
"b": 127 | |
}, | |
"positionInBook": 164 | |
}, | |
{ | |
"code": "10428 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 58, | |
"b": 133 | |
}, | |
"positionInBook": 165 | |
}, | |
{ | |
"code": "10429 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 44, | |
"b": 110 | |
}, | |
"positionInBook": 166 | |
}, | |
{ | |
"code": "10430 C", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 45, | |
"b": 96 | |
}, | |
"positionInBook": 167 | |
}, | |
{ | |
"code": "10238 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 137, | |
"b": 169 | |
}, | |
"positionInBook": 168 | |
}, | |
{ | |
"code": "10239 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 125, | |
"b": 168 | |
}, | |
"positionInBook": 169 | |
}, | |
{ | |
"code": "10240 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 110, | |
"b": 164 | |
}, | |
"positionInBook": 170 | |
}, | |
{ | |
"code": "10241 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 96, | |
"b": 160 | |
}, | |
"positionInBook": 171 | |
}, | |
{ | |
"code": "10242 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 82, | |
"b": 156 | |
}, | |
"positionInBook": 172 | |
}, | |
{ | |
"code": "10243 C", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 69, | |
"b": 152 | |
}, | |
"positionInBook": 173 | |
}, | |
{ | |
"code": "10244 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 134, | |
"b": 169 | |
}, | |
"positionInBook": 174 | |
}, | |
{ | |
"code": "10245 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 120, | |
"b": 167 | |
}, | |
"positionInBook": 175 | |
}, | |
{ | |
"code": "10246 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 106, | |
"b": 163 | |
}, | |
"positionInBook": 176 | |
}, | |
{ | |
"code": "10247 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 93, | |
"b": 158 | |
}, | |
"positionInBook": 177 | |
}, | |
{ | |
"code": "10248 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 79, | |
"b": 153 | |
}, | |
"positionInBook": 178 | |
}, | |
{ | |
"code": "10249 C", | |
"name": null, | |
"rgb": { | |
"r": 30, | |
"g": 66, | |
"b": 148 | |
}, | |
"positionInBook": 179 | |
}, | |
{ | |
"code": "10250 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 156, | |
"b": 172 | |
}, | |
"positionInBook": 180 | |
}, | |
{ | |
"code": "10251 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 144, | |
"b": 171 | |
}, | |
"positionInBook": 181 | |
}, | |
{ | |
"code": "10252 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 133, | |
"b": 170 | |
}, | |
"positionInBook": 182 | |
}, | |
{ | |
"code": "10253 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 121, | |
"b": 167 | |
}, | |
"positionInBook": 183 | |
}, | |
{ | |
"code": "10254 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 108, | |
"b": 164 | |
}, | |
"positionInBook": 184 | |
}, | |
{ | |
"code": "10255 C", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 96, | |
"b": 162 | |
}, | |
"positionInBook": 185 | |
}, | |
{ | |
"code": "10256 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 148, | |
"b": 172 | |
}, | |
"positionInBook": 186 | |
}, | |
{ | |
"code": "10257 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 138, | |
"b": 171 | |
}, | |
"positionInBook": 187 | |
}, | |
{ | |
"code": "10258 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 128, | |
"b": 169 | |
}, | |
"positionInBook": 188 | |
}, | |
{ | |
"code": "10259 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 117, | |
"b": 167 | |
}, | |
"positionInBook": 189 | |
}, | |
{ | |
"code": "10260 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 106, | |
"b": 166 | |
}, | |
"positionInBook": 190 | |
}, | |
{ | |
"code": "10261 C", | |
"name": null, | |
"rgb": { | |
"r": 39, | |
"g": 94, | |
"b": 163 | |
}, | |
"positionInBook": 191 | |
}, | |
{ | |
"code": "10262 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 154, | |
"b": 163 | |
}, | |
"positionInBook": 192 | |
}, | |
{ | |
"code": "10263 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 139, | |
"b": 153 | |
}, | |
"positionInBook": 193 | |
}, | |
{ | |
"code": "10264 C", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 126, | |
"b": 144 | |
}, | |
"positionInBook": 194 | |
}, | |
{ | |
"code": "10265 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 115, | |
"b": 134 | |
}, | |
"positionInBook": 195 | |
}, | |
{ | |
"code": "10266 C", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 102, | |
"b": 124 | |
}, | |
"positionInBook": 196 | |
}, | |
{ | |
"code": "10267 C", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 90, | |
"b": 113 | |
}, | |
"positionInBook": 197 | |
}, | |
{ | |
"code": "10431 C", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 160, | |
"b": 168 | |
}, | |
"positionInBook": 198 | |
}, | |
{ | |
"code": "10432 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 125, | |
"b": 139 | |
}, | |
"positionInBook": 199 | |
}, | |
{ | |
"code": "10433 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 116, | |
"b": 151 | |
}, | |
"positionInBook": 200 | |
}, | |
{ | |
"code": "10434 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 96, | |
"b": 131 | |
}, | |
"positionInBook": 201 | |
}, | |
{ | |
"code": "10435 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 121, | |
"b": 130 | |
}, | |
"positionInBook": 202 | |
}, | |
{ | |
"code": "10436 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 111, | |
"b": 116 | |
}, | |
"positionInBook": 203 | |
}, | |
{ | |
"code": "10268 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 153, | |
"b": 174 | |
}, | |
"positionInBook": 204 | |
}, | |
{ | |
"code": "10269 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 144, | |
"b": 173 | |
}, | |
"positionInBook": 205 | |
}, | |
{ | |
"code": "10270 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 136, | |
"b": 172 | |
}, | |
"positionInBook": 206 | |
}, | |
{ | |
"code": "10271 C", | |
"name": null, | |
"rgb": { | |
"r": 50, | |
"g": 127, | |
"b": 170 | |
}, | |
"positionInBook": 207 | |
}, | |
{ | |
"code": "10272 C", | |
"name": null, | |
"rgb": { | |
"r": 14, | |
"g": 118, | |
"b": 170 | |
}, | |
"positionInBook": 208 | |
}, | |
{ | |
"code": "10273 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 108, | |
"b": 170 | |
}, | |
"positionInBook": 209 | |
}, | |
{ | |
"code": "10274 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 159, | |
"b": 174 | |
}, | |
"positionInBook": 210 | |
}, | |
{ | |
"code": "10275 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 153, | |
"b": 174 | |
}, | |
"positionInBook": 211 | |
}, | |
{ | |
"code": "10276 C", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 148, | |
"b": 175 | |
}, | |
"positionInBook": 212 | |
}, | |
{ | |
"code": "10277 C", | |
"name": null, | |
"rgb": { | |
"r": 33, | |
"g": 142, | |
"b": 174 | |
}, | |
"positionInBook": 213 | |
}, | |
{ | |
"code": "10278 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 136, | |
"b": 175 | |
}, | |
"positionInBook": 214 | |
}, | |
{ | |
"code": "10279 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 131, | |
"b": 177 | |
}, | |
"positionInBook": 215 | |
}, | |
{ | |
"code": "10280 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 159, | |
"b": 165 | |
}, | |
"positionInBook": 216 | |
}, | |
{ | |
"code": "10281 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 152, | |
"b": 160 | |
}, | |
"positionInBook": 217 | |
}, | |
{ | |
"code": "10282 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 144, | |
"b": 154 | |
}, | |
"positionInBook": 218 | |
}, | |
{ | |
"code": "10283 C", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 137, | |
"b": 149 | |
}, | |
"positionInBook": 219 | |
}, | |
{ | |
"code": "10284 C", | |
"name": null, | |
"rgb": { | |
"r": 27, | |
"g": 129, | |
"b": 143 | |
}, | |
"positionInBook": 220 | |
}, | |
{ | |
"code": "10285 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 121, | |
"b": 137 | |
}, | |
"positionInBook": 221 | |
}, | |
{ | |
"code": "10286 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 164, | |
"b": 167 | |
}, | |
"positionInBook": 222 | |
}, | |
{ | |
"code": "10287 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 160, | |
"b": 165 | |
}, | |
"positionInBook": 223 | |
}, | |
{ | |
"code": "10288 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 156, | |
"b": 162 | |
}, | |
"positionInBook": 224 | |
}, | |
{ | |
"code": "10289 C", | |
"name": null, | |
"rgb": { | |
"r": 43, | |
"g": 153, | |
"b": 158 | |
}, | |
"positionInBook": 225 | |
}, | |
{ | |
"code": "10290 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 148, | |
"b": 154 | |
}, | |
"positionInBook": 226 | |
}, | |
{ | |
"code": "10291 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 145, | |
"b": 150 | |
}, | |
"positionInBook": 227 | |
}, | |
{ | |
"code": "10437 C", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 115, | |
"b": 92 | |
}, | |
"positionInBook": 228 | |
}, | |
{ | |
"code": "10438 C", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 150, | |
"b": 104 | |
}, | |
"positionInBook": 229 | |
}, | |
{ | |
"code": "10439 C", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 148, | |
"b": 123 | |
}, | |
"positionInBook": 230 | |
}, | |
{ | |
"code": "10440 C", | |
"name": null, | |
"rgb": { | |
"r": 2, | |
"g": 135, | |
"b": 143 | |
}, | |
"positionInBook": 231 | |
}, | |
{ | |
"code": "10441 C", | |
"name": null, | |
"rgb": { | |
"r": 1, | |
"g": 102, | |
"b": 113 | |
}, | |
"positionInBook": 232 | |
}, | |
{ | |
"code": "10442 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 92, | |
"b": 98 | |
}, | |
"positionInBook": 233 | |
}, | |
{ | |
"code": "10292 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 169, | |
"b": 164 | |
}, | |
"positionInBook": 234 | |
}, | |
{ | |
"code": "10293 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 167, | |
"b": 159 | |
}, | |
"positionInBook": 235 | |
}, | |
{ | |
"code": "10294 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 164, | |
"b": 153 | |
}, | |
"positionInBook": 236 | |
}, | |
{ | |
"code": "10295 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 162, | |
"b": 147 | |
}, | |
"positionInBook": 237 | |
}, | |
{ | |
"code": "10296 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 160, | |
"b": 141 | |
}, | |
"positionInBook": 238 | |
}, | |
{ | |
"code": "10297 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 158, | |
"b": 135 | |
}, | |
"positionInBook": 239 | |
}, | |
{ | |
"code": "10298 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 163, | |
"b": 138 | |
}, | |
"positionInBook": 240 | |
}, | |
{ | |
"code": "10299 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 158, | |
"b": 124 | |
}, | |
"positionInBook": 241 | |
}, | |
{ | |
"code": "10300 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 154, | |
"b": 111 | |
}, | |
"positionInBook": 242 | |
}, | |
{ | |
"code": "10301 C", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 149, | |
"b": 99 | |
}, | |
"positionInBook": 243 | |
}, | |
{ | |
"code": "10302 C", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 145, | |
"b": 88 | |
}, | |
"positionInBook": 244 | |
}, | |
{ | |
"code": "10303 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 140, | |
"b": 75 | |
}, | |
"positionInBook": 245 | |
}, | |
{ | |
"code": "10304 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 165, | |
"b": 131 | |
}, | |
"positionInBook": 246 | |
}, | |
{ | |
"code": "10305 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 161, | |
"b": 116 | |
}, | |
"positionInBook": 247 | |
}, | |
{ | |
"code": "10306 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 157, | |
"b": 102 | |
}, | |
"positionInBook": 248 | |
}, | |
{ | |
"code": "10307 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 153, | |
"b": 89 | |
}, | |
"positionInBook": 249 | |
}, | |
{ | |
"code": "10308 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 149, | |
"b": 77 | |
}, | |
"positionInBook": 250 | |
}, | |
{ | |
"code": "10309 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 144, | |
"b": 63 | |
}, | |
"positionInBook": 251 | |
}, | |
{ | |
"code": "10310 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 160, | |
"b": 148 | |
}, | |
"positionInBook": 252 | |
}, | |
{ | |
"code": "10311 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 150, | |
"b": 131 | |
}, | |
"positionInBook": 253 | |
}, | |
{ | |
"code": "10312 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 141, | |
"b": 116 | |
}, | |
"positionInBook": 254 | |
}, | |
{ | |
"code": "10313 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 131, | |
"b": 103 | |
}, | |
"positionInBook": 255 | |
}, | |
{ | |
"code": "10314 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 121, | |
"b": 90 | |
}, | |
"positionInBook": 256 | |
}, | |
{ | |
"code": "10315 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 111, | |
"b": 78 | |
}, | |
"positionInBook": 257 | |
}, | |
{ | |
"code": "10316 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 169, | |
"b": 127 | |
}, | |
"positionInBook": 258 | |
}, | |
{ | |
"code": "10317 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 168, | |
"b": 110 | |
}, | |
"positionInBook": 259 | |
}, | |
{ | |
"code": "10318 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 167, | |
"b": 95 | |
}, | |
"positionInBook": 260 | |
}, | |
{ | |
"code": "10319 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 165, | |
"b": 80 | |
}, | |
"positionInBook": 261 | |
}, | |
{ | |
"code": "10320 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 165, | |
"b": 65 | |
}, | |
"positionInBook": 262 | |
}, | |
{ | |
"code": "10321 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 164, | |
"b": 48 | |
}, | |
"positionInBook": 263 | |
}, | |
{ | |
"code": "10322 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 171, | |
"b": 118 | |
}, | |
"positionInBook": 264 | |
}, | |
{ | |
"code": "10323 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 169, | |
"b": 98 | |
}, | |
"positionInBook": 265 | |
}, | |
{ | |
"code": "10324 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 170, | |
"b": 83 | |
}, | |
"positionInBook": 266 | |
}, | |
{ | |
"code": "10325 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 168, | |
"b": 65 | |
}, | |
"positionInBook": 267 | |
}, | |
{ | |
"code": "10326 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 168, | |
"b": 46 | |
}, | |
"positionInBook": 268 | |
}, | |
{ | |
"code": "10327 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 171, | |
"b": 25 | |
}, | |
"positionInBook": 269 | |
}, | |
{ | |
"code": "10328 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 158, | |
"b": 123 | |
}, | |
"positionInBook": 270 | |
}, | |
{ | |
"code": "10329 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 151, | |
"b": 106 | |
}, | |
"positionInBook": 271 | |
}, | |
{ | |
"code": "10330 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 143, | |
"b": 91 | |
}, | |
"positionInBook": 272 | |
}, | |
{ | |
"code": "10331 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 135, | |
"b": 77 | |
}, | |
"positionInBook": 273 | |
}, | |
{ | |
"code": "10332 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 128, | |
"b": 64 | |
}, | |
"positionInBook": 274 | |
}, | |
{ | |
"code": "10333 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 118, | |
"b": 53 | |
}, | |
"positionInBook": 275 | |
}, | |
{ | |
"code": "10334 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 152, | |
"b": 131 | |
}, | |
"positionInBook": 276 | |
}, | |
{ | |
"code": "10335 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 144, | |
"b": 115 | |
}, | |
"positionInBook": 277 | |
}, | |
{ | |
"code": "10336 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 135, | |
"b": 101 | |
}, | |
"positionInBook": 278 | |
}, | |
{ | |
"code": "10337 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 125, | |
"b": 86 | |
}, | |
"positionInBook": 279 | |
}, | |
{ | |
"code": "10338 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 116, | |
"b": 72 | |
}, | |
"positionInBook": 280 | |
}, | |
{ | |
"code": "10339 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 106, | |
"b": 58 | |
}, | |
"positionInBook": 281 | |
}, | |
{ | |
"code": "10340 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 150, | |
"b": 126 | |
}, | |
"positionInBook": 282 | |
}, | |
{ | |
"code": "10341 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 141, | |
"b": 110 | |
}, | |
"positionInBook": 283 | |
}, | |
{ | |
"code": "10342 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 132, | |
"b": 94 | |
}, | |
"positionInBook": 284 | |
}, | |
{ | |
"code": "10343 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 122, | |
"b": 79 | |
}, | |
"positionInBook": 285 | |
}, | |
{ | |
"code": "10344 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 113, | |
"b": 65 | |
}, | |
"positionInBook": 286 | |
}, | |
{ | |
"code": "10345 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 103, | |
"b": 52 | |
}, | |
"positionInBook": 287 | |
}, | |
{ | |
"code": "10346 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 149, | |
"b": 125 | |
}, | |
"positionInBook": 288 | |
}, | |
{ | |
"code": "10347 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 139, | |
"b": 107 | |
}, | |
"positionInBook": 289 | |
}, | |
{ | |
"code": "10348 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 131, | |
"b": 93 | |
}, | |
"positionInBook": 290 | |
}, | |
{ | |
"code": "10349 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 123, | |
"b": 80 | |
}, | |
"positionInBook": 291 | |
}, | |
{ | |
"code": "10350 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 113, | |
"b": 67 | |
}, | |
"positionInBook": 292 | |
}, | |
{ | |
"code": "10351 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 105, | |
"b": 53 | |
}, | |
"positionInBook": 293 | |
}, | |
{ | |
"code": "10352 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 159, | |
"b": 142 | |
}, | |
"positionInBook": 294 | |
}, | |
{ | |
"code": "10353 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 147, | |
"b": 121 | |
}, | |
"positionInBook": 295 | |
}, | |
{ | |
"code": "10354 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 138, | |
"b": 102 | |
}, | |
"positionInBook": 296 | |
}, | |
{ | |
"code": "10355 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 127, | |
"b": 86 | |
}, | |
"positionInBook": 297 | |
}, | |
{ | |
"code": "10356 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 119, | |
"b": 71 | |
}, | |
"positionInBook": 298 | |
}, | |
{ | |
"code": "10357 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 109, | |
"b": 57 | |
}, | |
"positionInBook": 299 | |
}, | |
{ | |
"code": "10358 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 144, | |
"b": 122 | |
}, | |
"positionInBook": 300 | |
}, | |
{ | |
"code": "10359 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 134, | |
"b": 105 | |
}, | |
"positionInBook": 301 | |
}, | |
{ | |
"code": "10360 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 123, | |
"b": 89 | |
}, | |
"positionInBook": 302 | |
}, | |
{ | |
"code": "10361 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 112, | |
"b": 75 | |
}, | |
"positionInBook": 303 | |
}, | |
{ | |
"code": "10362 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 101, | |
"b": 61 | |
}, | |
"positionInBook": 304 | |
}, | |
{ | |
"code": "10363 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 90, | |
"b": 50 | |
}, | |
"positionInBook": 305 | |
}, | |
{ | |
"code": "10364 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 152, | |
"b": 135 | |
}, | |
"positionInBook": 306 | |
}, | |
{ | |
"code": "10365 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 138, | |
"b": 112 | |
}, | |
"positionInBook": 307 | |
}, | |
{ | |
"code": "10366 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 124, | |
"b": 92 | |
}, | |
"positionInBook": 308 | |
}, | |
{ | |
"code": "10367 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 112, | |
"b": 77 | |
}, | |
"positionInBook": 309 | |
}, | |
{ | |
"code": "10368 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 100, | |
"b": 62 | |
}, | |
"positionInBook": 310 | |
}, | |
{ | |
"code": "10369 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 89, | |
"b": 50 | |
}, | |
"positionInBook": 311 | |
}, | |
{ | |
"code": "10370 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 152, | |
"b": 143 | |
}, | |
"positionInBook": 312 | |
}, | |
{ | |
"code": "10371 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 137, | |
"b": 123 | |
}, | |
"positionInBook": 313 | |
}, | |
{ | |
"code": "10372 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 124, | |
"b": 107 | |
}, | |
"positionInBook": 314 | |
}, | |
{ | |
"code": "10373 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 111, | |
"b": 91 | |
}, | |
"positionInBook": 315 | |
}, | |
{ | |
"code": "10374 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 97, | |
"b": 77 | |
}, | |
"positionInBook": 316 | |
}, | |
{ | |
"code": "10375 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 86, | |
"b": 65 | |
}, | |
"positionInBook": 317 | |
}, | |
{ | |
"code": "10376 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 138, | |
"b": 131 | |
}, | |
"positionInBook": 318 | |
}, | |
{ | |
"code": "10377 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 125, | |
"b": 115 | |
}, | |
"positionInBook": 319 | |
}, | |
{ | |
"code": "10378 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 111, | |
"b": 100 | |
}, | |
"positionInBook": 320 | |
}, | |
{ | |
"code": "10379 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 100, | |
"b": 88 | |
}, | |
"positionInBook": 321 | |
}, | |
{ | |
"code": "10380 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 88, | |
"b": 75 | |
}, | |
"positionInBook": 322 | |
}, | |
{ | |
"code": "10381 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 75, | |
"b": 62 | |
}, | |
"positionInBook": 323 | |
}, | |
{ | |
"code": "10443 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 136, | |
"b": 123 | |
}, | |
"positionInBook": 324 | |
}, | |
{ | |
"code": "10444 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 120, | |
"b": 116 | |
}, | |
"positionInBook": 325 | |
}, | |
{ | |
"code": "10445 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 127, | |
"b": 121 | |
}, | |
"positionInBook": 326 | |
}, | |
{ | |
"code": "10446 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 137, | |
"b": 134 | |
}, | |
"positionInBook": 327 | |
}, | |
{ | |
"code": "10447 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 126, | |
"b": 126 | |
}, | |
"positionInBook": 328 | |
}, | |
{ | |
"code": "10448 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 143, | |
"b": 142 | |
}, | |
"positionInBook": 329 | |
}, | |
{ | |
"code": "10382 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 144, | |
"b": 146 | |
}, | |
"positionInBook": 330 | |
}, | |
{ | |
"code": "10383 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 125, | |
"b": 128 | |
}, | |
"positionInBook": 331 | |
}, | |
{ | |
"code": "10384 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 109, | |
"b": 111 | |
}, | |
"positionInBook": 332 | |
}, | |
{ | |
"code": "10385 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 94, | |
"b": 96 | |
}, | |
"positionInBook": 333 | |
}, | |
{ | |
"code": "10386 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 80, | |
"b": 82 | |
}, | |
"positionInBook": 334 | |
}, | |
{ | |
"code": "10387 C", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 67, | |
"b": 69 | |
}, | |
"positionInBook": 335 | |
}, | |
{ | |
"code": "10449 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 186, | |
"b": 180 | |
}, | |
"positionInBook": 336 | |
}, | |
{ | |
"code": "10450 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 173, | |
"b": 173 | |
}, | |
"positionInBook": 337 | |
}, | |
{ | |
"code": "10451 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 115, | |
"b": 112 | |
}, | |
"positionInBook": 338 | |
}, | |
{ | |
"code": "10452 C", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 100, | |
"b": 103 | |
}, | |
"positionInBook": 339 | |
}, | |
{ | |
"code": "10453 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 91, | |
"b": 95 | |
}, | |
"positionInBook": 340 | |
}, | |
{ | |
"code": "10454 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 75, | |
"b": 75 | |
}, | |
"positionInBook": 341 | |
}, | |
{ | |
"code": "10388 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 144, | |
"b": 147 | |
}, | |
"positionInBook": 342 | |
}, | |
{ | |
"code": "10389 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 128, | |
"b": 133 | |
}, | |
"positionInBook": 343 | |
}, | |
{ | |
"code": "10390 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 113, | |
"b": 117 | |
}, | |
"positionInBook": 344 | |
}, | |
{ | |
"code": "10391 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 97, | |
"b": 102 | |
}, | |
"positionInBook": 345 | |
}, | |
{ | |
"code": "10392 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 84, | |
"b": 88 | |
}, | |
"positionInBook": 346 | |
}, | |
{ | |
"code": "10393 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 71, | |
"b": 75 | |
}, | |
"positionInBook": 347 | |
}, | |
{ | |
"code": "10394 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 123, | |
"b": 121 | |
}, | |
"positionInBook": 348 | |
}, | |
{ | |
"code": "10395 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 108, | |
"b": 105 | |
}, | |
"positionInBook": 349 | |
}, | |
{ | |
"code": "10396 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 92, | |
"b": 88 | |
}, | |
"positionInBook": 350 | |
}, | |
{ | |
"code": "10397 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 77, | |
"b": 74 | |
}, | |
"positionInBook": 351 | |
}, | |
{ | |
"code": "10398 C", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 64, | |
"b": 61 | |
}, | |
"positionInBook": 352 | |
}, | |
{ | |
"code": "10399 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 52, | |
"b": 50 | |
}, | |
"positionInBook": 353 | |
}, | |
{ | |
"code": "871 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 118, | |
"b": 75 | |
}, | |
"positionInBook": 354 | |
}, | |
{ | |
"code": "872 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 115, | |
"b": 76 | |
}, | |
"positionInBook": 355 | |
}, | |
{ | |
"code": "873 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 113, | |
"b": 76 | |
}, | |
"positionInBook": 356 | |
}, | |
{ | |
"code": "874 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 108, | |
"b": 76 | |
}, | |
"positionInBook": 357 | |
}, | |
{ | |
"code": "875 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 106, | |
"b": 81 | |
}, | |
"positionInBook": 358 | |
}, | |
{ | |
"code": "876 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 101, | |
"b": 77 | |
}, | |
"positionInBook": 359 | |
}, | |
{ | |
"code": "877 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 144, | |
"b": 147 | |
}, | |
"positionInBook": 360 | |
}, | |
{ | |
"code": "8001 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 139, | |
"b": 137 | |
}, | |
"positionInBook": 361 | |
}, | |
{ | |
"code": "8002 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 132, | |
"b": 124 | |
}, | |
"positionInBook": 362 | |
}, | |
{ | |
"code": "8003 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 128, | |
"b": 117 | |
}, | |
"positionInBook": 363 | |
}, | |
{ | |
"code": "8004 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 122, | |
"b": 105 | |
}, | |
"positionInBook": 364 | |
}, | |
{ | |
"code": "8005 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 113, | |
"b": 90 | |
}, | |
"positionInBook": 365 | |
}, | |
{ | |
"code": "8006 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 113, | |
"b": 87 | |
}, | |
"positionInBook": 366 | |
}, | |
{ | |
"code": "8020 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 136, | |
"b": 123 | |
}, | |
"positionInBook": 367 | |
}, | |
{ | |
"code": "8021 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 129, | |
"b": 112 | |
}, | |
"positionInBook": 368 | |
}, | |
{ | |
"code": "8022 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 115, | |
"b": 87 | |
}, | |
"positionInBook": 369 | |
}, | |
{ | |
"code": "8023 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 100, | |
"b": 67 | |
}, | |
"positionInBook": 370 | |
}, | |
{ | |
"code": "8024 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 91, | |
"b": 47 | |
}, | |
"positionInBook": 371 | |
}, | |
{ | |
"code": "8025 C", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 82, | |
"b": 37 | |
}, | |
"positionInBook": 372 | |
}, | |
{ | |
"code": "8040 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 144, | |
"b": 141 | |
}, | |
"positionInBook": 373 | |
}, | |
{ | |
"code": "8041 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 132, | |
"b": 124 | |
}, | |
"positionInBook": 374 | |
}, | |
{ | |
"code": "8042 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 123, | |
"b": 113 | |
}, | |
"positionInBook": 375 | |
}, | |
{ | |
"code": "8043 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 110, | |
"b": 96 | |
}, | |
"positionInBook": 376 | |
}, | |
{ | |
"code": "8044 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 95, | |
"b": 73 | |
}, | |
"positionInBook": 377 | |
}, | |
{ | |
"code": "8045 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 88, | |
"b": 64 | |
}, | |
"positionInBook": 378 | |
}, | |
{ | |
"code": "8060 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 133, | |
"b": 141 | |
}, | |
"positionInBook": 379 | |
}, | |
{ | |
"code": "8061 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 121, | |
"b": 131 | |
}, | |
"positionInBook": 380 | |
}, | |
{ | |
"code": "8062 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 109, | |
"b": 121 | |
}, | |
"positionInBook": 381 | |
}, | |
{ | |
"code": "8063 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 95, | |
"b": 108 | |
}, | |
"positionInBook": 382 | |
}, | |
{ | |
"code": "8064 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 91, | |
"b": 98 | |
}, | |
"positionInBook": 383 | |
}, | |
{ | |
"code": "8065 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 84, | |
"b": 86 | |
}, | |
"positionInBook": 384 | |
}, | |
{ | |
"code": "8080 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 137, | |
"b": 149 | |
}, | |
"positionInBook": 385 | |
}, | |
{ | |
"code": "8081 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 113, | |
"b": 143 | |
}, | |
"positionInBook": 386 | |
}, | |
{ | |
"code": "8082 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 98, | |
"b": 139 | |
}, | |
"positionInBook": 387 | |
}, | |
{ | |
"code": "8083 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 78, | |
"b": 133 | |
}, | |
"positionInBook": 388 | |
}, | |
{ | |
"code": "8084 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 59, | |
"b": 116 | |
}, | |
"positionInBook": 389 | |
}, | |
{ | |
"code": "8085 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 46, | |
"b": 100 | |
}, | |
"positionInBook": 390 | |
}, | |
{ | |
"code": "8100 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 126, | |
"b": 150 | |
}, | |
"positionInBook": 391 | |
}, | |
{ | |
"code": "8101 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 109, | |
"b": 147 | |
}, | |
"positionInBook": 392 | |
}, | |
{ | |
"code": "8102 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 96, | |
"b": 144 | |
}, | |
"positionInBook": 393 | |
}, | |
{ | |
"code": "8103 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 75, | |
"b": 139 | |
}, | |
"positionInBook": 394 | |
}, | |
{ | |
"code": "8104 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 57, | |
"b": 125 | |
}, | |
"positionInBook": 395 | |
}, | |
{ | |
"code": "8105 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 44, | |
"b": 106 | |
}, | |
"positionInBook": 396 | |
}, | |
{ | |
"code": "8120 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 136, | |
"b": 152 | |
}, | |
"positionInBook": 397 | |
}, | |
{ | |
"code": "8121 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 125, | |
"b": 150 | |
}, | |
"positionInBook": 398 | |
}, | |
{ | |
"code": "8122 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 108, | |
"b": 147 | |
}, | |
"positionInBook": 399 | |
}, | |
{ | |
"code": "8123 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 90, | |
"b": 148 | |
}, | |
"positionInBook": 400 | |
}, | |
{ | |
"code": "8124 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 76, | |
"b": 132 | |
}, | |
"positionInBook": 401 | |
}, | |
{ | |
"code": "8125 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 69, | |
"b": 118 | |
}, | |
"positionInBook": 402 | |
}, | |
{ | |
"code": "8140 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 124, | |
"b": 151 | |
}, | |
"positionInBook": 403 | |
}, | |
{ | |
"code": "8141 C", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 112, | |
"b": 150 | |
}, | |
"positionInBook": 404 | |
}, | |
{ | |
"code": "8142 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 95, | |
"b": 151 | |
}, | |
"positionInBook": 405 | |
}, | |
{ | |
"code": "8143 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 78, | |
"b": 148 | |
}, | |
"positionInBook": 406 | |
}, | |
{ | |
"code": "8144 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 79, | |
"b": 131 | |
}, | |
"positionInBook": 407 | |
}, | |
{ | |
"code": "8145 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 70, | |
"b": 117 | |
}, | |
"positionInBook": 408 | |
}, | |
{ | |
"code": "8160 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 139, | |
"b": 153 | |
}, | |
"positionInBook": 409 | |
}, | |
{ | |
"code": "8161 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 127, | |
"b": 152 | |
}, | |
"positionInBook": 410 | |
}, | |
{ | |
"code": "8162 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 99, | |
"b": 153 | |
}, | |
"positionInBook": 411 | |
}, | |
{ | |
"code": "8163 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 84, | |
"b": 155 | |
}, | |
"positionInBook": 412 | |
}, | |
{ | |
"code": "8164 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 75, | |
"b": 145 | |
}, | |
"positionInBook": 413 | |
}, | |
{ | |
"code": "8165 C", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 66, | |
"b": 136 | |
}, | |
"positionInBook": 414 | |
}, | |
{ | |
"code": "8180 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 144, | |
"b": 154 | |
}, | |
"positionInBook": 415 | |
}, | |
{ | |
"code": "8181 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 127, | |
"b": 157 | |
}, | |
"positionInBook": 416 | |
}, | |
{ | |
"code": "8182 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 114, | |
"b": 159 | |
}, | |
"positionInBook": 417 | |
}, | |
{ | |
"code": "8183 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 100, | |
"b": 161 | |
}, | |
"positionInBook": 418 | |
}, | |
{ | |
"code": "8184 C", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 87, | |
"b": 146 | |
}, | |
"positionInBook": 419 | |
}, | |
{ | |
"code": "8185 C", | |
"name": null, | |
"rgb": { | |
"r": 38, | |
"g": 78, | |
"b": 131 | |
}, | |
"positionInBook": 420 | |
}, | |
{ | |
"code": "8200 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 143, | |
"b": 155 | |
}, | |
"positionInBook": 421 | |
}, | |
{ | |
"code": "8201 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 137, | |
"b": 156 | |
}, | |
"positionInBook": 422 | |
}, | |
{ | |
"code": "8202 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 130, | |
"b": 158 | |
}, | |
"positionInBook": 423 | |
}, | |
{ | |
"code": "8203 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 122, | |
"b": 161 | |
}, | |
"positionInBook": 424 | |
}, | |
{ | |
"code": "8204 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 118, | |
"b": 142 | |
}, | |
"positionInBook": 425 | |
}, | |
{ | |
"code": "8205 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 111, | |
"b": 130 | |
}, | |
"positionInBook": 426 | |
}, | |
{ | |
"code": "8220 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 143, | |
"b": 154 | |
}, | |
"positionInBook": 427 | |
}, | |
{ | |
"code": "8221 C", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 140, | |
"b": 157 | |
}, | |
"positionInBook": 428 | |
}, | |
{ | |
"code": "8222 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 137, | |
"b": 161 | |
}, | |
"positionInBook": 429 | |
}, | |
{ | |
"code": "8223 C", | |
"name": null, | |
"rgb": { | |
"r": 35, | |
"g": 130, | |
"b": 161 | |
}, | |
"positionInBook": 430 | |
}, | |
{ | |
"code": "8224 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 142 | |
}, | |
"positionInBook": 431 | |
}, | |
{ | |
"code": "8225 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 109, | |
"b": 126 | |
}, | |
"positionInBook": 432 | |
}, | |
{ | |
"code": "8240 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 147, | |
"b": 151 | |
}, | |
"positionInBook": 433 | |
}, | |
{ | |
"code": "8241 C", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 142, | |
"b": 152 | |
}, | |
"positionInBook": 434 | |
}, | |
{ | |
"code": "8242 C", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 140, | |
"b": 154 | |
}, | |
"positionInBook": 435 | |
}, | |
{ | |
"code": "8243 C", | |
"name": null, | |
"rgb": { | |
"r": 43, | |
"g": 135, | |
"b": 153 | |
}, | |
"positionInBook": 436 | |
}, | |
{ | |
"code": "8244 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 128, | |
"b": 132 | |
}, | |
"positionInBook": 437 | |
}, | |
{ | |
"code": "8245 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 122, | |
"b": 123 | |
}, | |
"positionInBook": 438 | |
}, | |
{ | |
"code": "8260 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 144, | |
"b": 147 | |
}, | |
"positionInBook": 439 | |
}, | |
{ | |
"code": "8261 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 142, | |
"b": 145 | |
}, | |
"positionInBook": 440 | |
}, | |
{ | |
"code": "8262 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 137, | |
"b": 140 | |
}, | |
"positionInBook": 441 | |
}, | |
{ | |
"code": "8263 C", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 132, | |
"b": 134 | |
}, | |
"positionInBook": 442 | |
}, | |
{ | |
"code": "8264 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 121, | |
"b": 116 | |
}, | |
"positionInBook": 443 | |
}, | |
{ | |
"code": "8265 C", | |
"name": null, | |
"rgb": { | |
"r": 24, | |
"g": 110, | |
"b": 100 | |
}, | |
"positionInBook": 444 | |
}, | |
{ | |
"code": "8280 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 150, | |
"b": 149 | |
}, | |
"positionInBook": 445 | |
}, | |
{ | |
"code": "8281 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 149, | |
"b": 146 | |
}, | |
"positionInBook": 446 | |
}, | |
{ | |
"code": "8282 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 149, | |
"b": 143 | |
}, | |
"positionInBook": 447 | |
}, | |
{ | |
"code": "8283 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 151, | |
"b": 141 | |
}, | |
"positionInBook": 448 | |
}, | |
{ | |
"code": "8284 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 142, | |
"b": 125 | |
}, | |
"positionInBook": 449 | |
}, | |
{ | |
"code": "8285 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 139, | |
"b": 114 | |
}, | |
"positionInBook": 450 | |
}, | |
{ | |
"code": "8300 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 150, | |
"b": 140 | |
}, | |
"positionInBook": 451 | |
}, | |
{ | |
"code": "8301 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 150, | |
"b": 132 | |
}, | |
"positionInBook": 452 | |
}, | |
{ | |
"code": "8302 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 151, | |
"b": 124 | |
}, | |
"positionInBook": 453 | |
}, | |
{ | |
"code": "8303 C", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 150, | |
"b": 112 | |
}, | |
"positionInBook": 454 | |
}, | |
{ | |
"code": "8304 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 141, | |
"b": 102 | |
}, | |
"positionInBook": 455 | |
}, | |
{ | |
"code": "8305 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 134, | |
"b": 89 | |
}, | |
"positionInBook": 456 | |
}, | |
{ | |
"code": "8320 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 149, | |
"b": 141 | |
}, | |
"positionInBook": 457 | |
}, | |
{ | |
"code": "8321 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 151, | |
"b": 120 | |
}, | |
"positionInBook": 458 | |
}, | |
{ | |
"code": "8322 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 152, | |
"b": 108 | |
}, | |
"positionInBook": 459 | |
}, | |
{ | |
"code": "8323 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 153, | |
"b": 90 | |
}, | |
"positionInBook": 460 | |
}, | |
{ | |
"code": "8324 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 149, | |
"b": 87 | |
}, | |
"positionInBook": 461 | |
}, | |
{ | |
"code": "8325 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 140, | |
"b": 73 | |
}, | |
"positionInBook": 462 | |
}, | |
{ | |
"code": "8340 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 150, | |
"b": 125 | |
}, | |
"positionInBook": 463 | |
}, | |
{ | |
"code": "8341 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 151, | |
"b": 112 | |
}, | |
"positionInBook": 464 | |
}, | |
{ | |
"code": "8342 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 155, | |
"b": 96 | |
}, | |
"positionInBook": 465 | |
}, | |
{ | |
"code": "8343 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 155, | |
"b": 78 | |
}, | |
"positionInBook": 466 | |
}, | |
{ | |
"code": "8344 C", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 149, | |
"b": 53 | |
}, | |
"positionInBook": 467 | |
}, | |
{ | |
"code": "8345 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 142, | |
"b": 37 | |
}, | |
"positionInBook": 468 | |
}, | |
{ | |
"code": "8360 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 151, | |
"b": 120 | |
}, | |
"positionInBook": 469 | |
}, | |
{ | |
"code": "8361 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 152, | |
"b": 105 | |
}, | |
"positionInBook": 470 | |
}, | |
{ | |
"code": "8362 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 154, | |
"b": 88 | |
}, | |
"positionInBook": 471 | |
}, | |
{ | |
"code": "8363 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 156, | |
"b": 65 | |
}, | |
"positionInBook": 472 | |
}, | |
{ | |
"code": "8364 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 147, | |
"b": 65 | |
}, | |
"positionInBook": 473 | |
}, | |
{ | |
"code": "8365 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 142, | |
"b": 53 | |
}, | |
"positionInBook": 474 | |
}, | |
{ | |
"code": "8380 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 147, | |
"b": 135 | |
}, | |
"positionInBook": 475 | |
}, | |
{ | |
"code": "8381 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 146, | |
"b": 120 | |
}, | |
"positionInBook": 476 | |
}, | |
{ | |
"code": "8382 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 143, | |
"b": 105 | |
}, | |
"positionInBook": 477 | |
}, | |
{ | |
"code": "8383 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 141, | |
"b": 91 | |
}, | |
"positionInBook": 478 | |
}, | |
{ | |
"code": "8384 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 131, | |
"b": 64 | |
}, | |
"positionInBook": 479 | |
}, | |
{ | |
"code": "8385 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 125, | |
"b": 52 | |
}, | |
"positionInBook": 480 | |
}, | |
{ | |
"code": "8400 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 135, | |
"b": 135 | |
}, | |
"positionInBook": 481 | |
}, | |
{ | |
"code": "8401 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 127, | |
"b": 126 | |
}, | |
"positionInBook": 482 | |
}, | |
{ | |
"code": "8402 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 110, | |
"b": 109 | |
}, | |
"positionInBook": 483 | |
}, | |
{ | |
"code": "8403 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 94, | |
"b": 92 | |
}, | |
"positionInBook": 484 | |
}, | |
{ | |
"code": "8404 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 78, | |
"b": 72 | |
}, | |
"positionInBook": 485 | |
}, | |
{ | |
"code": "8405 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 68, | |
"b": 61 | |
}, | |
"positionInBook": 486 | |
}, | |
{ | |
"code": "8420 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 141, | |
"b": 141 | |
}, | |
"positionInBook": 487 | |
}, | |
{ | |
"code": "8421 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 128, | |
"b": 128 | |
}, | |
"positionInBook": 488 | |
}, | |
{ | |
"code": "8422 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 113, | |
"b": 113 | |
}, | |
"positionInBook": 489 | |
}, | |
{ | |
"code": "8423 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 96, | |
"b": 95 | |
}, | |
"positionInBook": 490 | |
}, | |
{ | |
"code": "8424 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 83, | |
"b": 79 | |
}, | |
"positionInBook": 491 | |
}, | |
{ | |
"code": "8425 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 76, | |
"b": 70 | |
}, | |
"positionInBook": 492 | |
}, | |
{ | |
"code": "8440 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 132, | |
"b": 133 | |
}, | |
"positionInBook": 493 | |
}, | |
{ | |
"code": "8441 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 123, | |
"b": 123 | |
}, | |
"positionInBook": 494 | |
}, | |
{ | |
"code": "8442 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 110, | |
"b": 110 | |
}, | |
"positionInBook": 495 | |
}, | |
{ | |
"code": "8443 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 97, | |
"b": 95 | |
}, | |
"positionInBook": 496 | |
}, | |
{ | |
"code": "8444 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 83, | |
"b": 76 | |
}, | |
"positionInBook": 497 | |
}, | |
{ | |
"code": "8445 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 75, | |
"b": 64 | |
}, | |
"positionInBook": 498 | |
}, | |
{ | |
"code": "8460 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 139, | |
"b": 145 | |
}, | |
"positionInBook": 499 | |
}, | |
{ | |
"code": "8461 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 124, | |
"b": 134 | |
}, | |
"positionInBook": 500 | |
}, | |
{ | |
"code": "8462 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 114, | |
"b": 125 | |
}, | |
"positionInBook": 501 | |
}, | |
{ | |
"code": "8463 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 98, | |
"b": 113 | |
}, | |
"positionInBook": 502 | |
}, | |
{ | |
"code": "8464 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 77, | |
"b": 91 | |
}, | |
"positionInBook": 503 | |
}, | |
{ | |
"code": "8465 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 72, | |
"b": 83 | |
}, | |
"positionInBook": 504 | |
}, | |
{ | |
"code": "8480 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 101, | |
"b": 119 | |
}, | |
"positionInBook": 505 | |
}, | |
{ | |
"code": "8481 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 96, | |
"b": 119 | |
}, | |
"positionInBook": 506 | |
}, | |
{ | |
"code": "8482 C", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 85, | |
"b": 111 | |
}, | |
"positionInBook": 507 | |
}, | |
{ | |
"code": "8483 C", | |
"name": null, | |
"rgb": { | |
"r": 21, | |
"g": 68, | |
"b": 104 | |
}, | |
"positionInBook": 508 | |
}, | |
{ | |
"code": "8484 C", | |
"name": null, | |
"rgb": { | |
"r": 30, | |
"g": 83, | |
"b": 125 | |
}, | |
"positionInBook": 509 | |
}, | |
{ | |
"code": "8485 C", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 93, | |
"b": 138 | |
}, | |
"positionInBook": 510 | |
}, | |
{ | |
"code": "8500 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 129, | |
"b": 126 | |
}, | |
"positionInBook": 511 | |
}, | |
{ | |
"code": "8501 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 120, | |
"b": 105 | |
}, | |
"positionInBook": 512 | |
}, | |
{ | |
"code": "8502 C", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 97, | |
"b": 103 | |
}, | |
"positionInBook": 513 | |
}, | |
{ | |
"code": "8503 C", | |
"name": null, | |
"rgb": { | |
"r": 43, | |
"g": 61, | |
"b": 66 | |
}, | |
"positionInBook": 514 | |
}, | |
{ | |
"code": "8504 C", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 78, | |
"b": 93 | |
}, | |
"positionInBook": 515 | |
}, | |
{ | |
"code": "8505 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 86, | |
"b": 101 | |
}, | |
"positionInBook": 516 | |
}, | |
{ | |
"code": "8520 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 118, | |
"b": 91 | |
}, | |
"positionInBook": 517 | |
}, | |
{ | |
"code": "8521 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 84, | |
"b": 67 | |
}, | |
"positionInBook": 518 | |
}, | |
{ | |
"code": "8522 C", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 73, | |
"b": 62 | |
}, | |
"positionInBook": 519 | |
}, | |
{ | |
"code": "8523 C", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 60, | |
"b": 53 | |
}, | |
"positionInBook": 520 | |
}, | |
{ | |
"code": "8524 C", | |
"name": null, | |
"rgb": { | |
"r": 51, | |
"g": 73, | |
"b": 72 | |
}, | |
"positionInBook": 521 | |
}, | |
{ | |
"code": "8525 C", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 81, | |
"b": 83 | |
}, | |
"positionInBook": 522 | |
}, | |
{ | |
"code": "8540 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 74, | |
"b": 79 | |
}, | |
"positionInBook": 523 | |
}, | |
{ | |
"code": "8541 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 65, | |
"b": 71 | |
}, | |
"positionInBook": 524 | |
}, | |
{ | |
"code": "8542 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 46, | |
"b": 55 | |
}, | |
"positionInBook": 525 | |
}, | |
{ | |
"code": "8543 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 48, | |
"b": 67 | |
}, | |
"positionInBook": 526 | |
}, | |
{ | |
"code": "8544 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 57, | |
"b": 81 | |
}, | |
"positionInBook": 527 | |
}, | |
{ | |
"code": "8545 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 60, | |
"b": 86 | |
}, | |
"positionInBook": 528 | |
}, | |
{ | |
"code": "8560 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 76, | |
"b": 60 | |
}, | |
"positionInBook": 529 | |
}, | |
{ | |
"code": "8561 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 66, | |
"b": 66 | |
}, | |
"positionInBook": 530 | |
}, | |
{ | |
"code": "8562 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 58, | |
"b": 66 | |
}, | |
"positionInBook": 531 | |
}, | |
{ | |
"code": "8563 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 67, | |
"b": 63 | |
}, | |
"positionInBook": 532 | |
}, | |
{ | |
"code": "8564 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 75, | |
"b": 75 | |
}, | |
"positionInBook": 533 | |
}, | |
{ | |
"code": "8565 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 78, | |
"b": 80 | |
}, | |
"positionInBook": 534 | |
}, | |
{ | |
"code": "8580 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 107, | |
"b": 58 | |
}, | |
"positionInBook": 535 | |
}, | |
{ | |
"code": "8581 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 89, | |
"b": 49 | |
}, | |
"positionInBook": 536 | |
}, | |
{ | |
"code": "8582 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 82, | |
"b": 42 | |
}, | |
"positionInBook": 537 | |
}, | |
{ | |
"code": "8583 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 67, | |
"b": 30 | |
}, | |
"positionInBook": 538 | |
}, | |
{ | |
"code": "8584 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 71, | |
"b": 39 | |
}, | |
"positionInBook": 539 | |
}, | |
{ | |
"code": "8585 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 78, | |
"b": 48 | |
}, | |
"positionInBook": 540 | |
}, | |
{ | |
"code": "8600 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 86, | |
"b": 82 | |
}, | |
"positionInBook": 541 | |
}, | |
{ | |
"code": "8601 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 68, | |
"b": 65 | |
}, | |
"positionInBook": 542 | |
}, | |
{ | |
"code": "8602 C", | |
"name": null, | |
"rgb": { | |
"r": 61, | |
"g": 58, | |
"b": 62 | |
}, | |
"positionInBook": 543 | |
}, | |
{ | |
"code": "8603 C", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 48, | |
"b": 58 | |
}, | |
"positionInBook": 544 | |
}, | |
{ | |
"code": "8604 C", | |
"name": null, | |
"rgb": { | |
"r": 51, | |
"g": 58, | |
"b": 73 | |
}, | |
"positionInBook": 545 | |
}, | |
{ | |
"code": "8605 C", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 67, | |
"b": 84 | |
}, | |
"positionInBook": 546 | |
}, | |
{ | |
"code": "8620 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 92, | |
"b": 64 | |
}, | |
"positionInBook": 547 | |
}, | |
{ | |
"code": "8621 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 76, | |
"b": 55 | |
}, | |
"positionInBook": 548 | |
}, | |
{ | |
"code": "8622 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 66, | |
"b": 50 | |
}, | |
"positionInBook": 549 | |
}, | |
{ | |
"code": "8623 C", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 58, | |
"b": 50 | |
}, | |
"positionInBook": 550 | |
}, | |
{ | |
"code": "8624 C", | |
"name": null, | |
"rgb": { | |
"r": 67, | |
"g": 61, | |
"b": 55 | |
}, | |
"positionInBook": 551 | |
}, | |
{ | |
"code": "8625 C", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 64, | |
"b": 59 | |
}, | |
"positionInBook": 552 | |
}, | |
{ | |
"code": "8640 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 124, | |
"b": 47 | |
}, | |
"positionInBook": 553 | |
}, | |
{ | |
"code": "8641 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 134, | |
"b": 34 | |
}, | |
"positionInBook": 554 | |
}, | |
{ | |
"code": "8642 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 138, | |
"b": 12 | |
}, | |
"positionInBook": 555 | |
}, | |
{ | |
"code": "8643 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 137, | |
"b": 0 | |
}, | |
"positionInBook": 556 | |
}, | |
{ | |
"code": "8644 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 145, | |
"b": 20 | |
}, | |
"positionInBook": 557 | |
}, | |
{ | |
"code": "8645 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 148, | |
"b": 42 | |
}, | |
"positionInBook": 558 | |
}, | |
{ | |
"code": "8660 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 120, | |
"b": 49 | |
}, | |
"positionInBook": 559 | |
}, | |
{ | |
"code": "8661 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 124, | |
"b": 27 | |
}, | |
"positionInBook": 560 | |
}, | |
{ | |
"code": "8662 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 129, | |
"b": 27 | |
}, | |
"positionInBook": 561 | |
}, | |
{ | |
"code": "8663 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 133, | |
"b": 10 | |
}, | |
"positionInBook": 562 | |
}, | |
{ | |
"code": "8664 C", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 144, | |
"b": 38 | |
}, | |
"positionInBook": 563 | |
}, | |
{ | |
"code": "8665 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 147, | |
"b": 55 | |
}, | |
"positionInBook": 564 | |
}, | |
{ | |
"code": "8680 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 114, | |
"b": 60 | |
}, | |
"positionInBook": 565 | |
}, | |
{ | |
"code": "8681 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 124, | |
"b": 50 | |
}, | |
"positionInBook": 566 | |
}, | |
{ | |
"code": "8682 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 127, | |
"b": 42 | |
}, | |
"positionInBook": 567 | |
}, | |
{ | |
"code": "8683 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 135, | |
"b": 36 | |
}, | |
"positionInBook": 568 | |
}, | |
{ | |
"code": "8684 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 136, | |
"b": 50 | |
}, | |
"positionInBook": 569 | |
}, | |
{ | |
"code": "8685 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 141, | |
"b": 65 | |
}, | |
"positionInBook": 570 | |
}, | |
{ | |
"code": "8700 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 116, | |
"b": 76 | |
}, | |
"positionInBook": 571 | |
}, | |
{ | |
"code": "8701 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 121, | |
"b": 66 | |
}, | |
"positionInBook": 572 | |
}, | |
{ | |
"code": "8702 C", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 125, | |
"b": 63 | |
}, | |
"positionInBook": 573 | |
}, | |
{ | |
"code": "8703 C", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 128, | |
"b": 60 | |
}, | |
"positionInBook": 574 | |
}, | |
{ | |
"code": "8704 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 136, | |
"b": 78 | |
}, | |
"positionInBook": 575 | |
}, | |
{ | |
"code": "8705 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 141, | |
"b": 89 | |
}, | |
"positionInBook": 576 | |
}, | |
{ | |
"code": "8720 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 110, | |
"b": 86 | |
}, | |
"positionInBook": 577 | |
}, | |
{ | |
"code": "8721 C", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 117, | |
"b": 85 | |
}, | |
"positionInBook": 578 | |
}, | |
{ | |
"code": "8722 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 116, | |
"b": 86 | |
}, | |
"positionInBook": 579 | |
}, | |
{ | |
"code": "8723 C", | |
"name": null, | |
"rgb": { | |
"r": 32, | |
"g": 128, | |
"b": 92 | |
}, | |
"positionInBook": 580 | |
}, | |
{ | |
"code": "8724 C", | |
"name": null, | |
"rgb": { | |
"r": 43, | |
"g": 136, | |
"b": 109 | |
}, | |
"positionInBook": 581 | |
}, | |
{ | |
"code": "8725 C", | |
"name": null, | |
"rgb": { | |
"r": 49, | |
"g": 140, | |
"b": 118 | |
}, | |
"positionInBook": 582 | |
}, | |
{ | |
"code": "8740 C", | |
"name": null, | |
"rgb": { | |
"r": 69, | |
"g": 104, | |
"b": 94 | |
}, | |
"positionInBook": 583 | |
}, | |
{ | |
"code": "8741 C", | |
"name": null, | |
"rgb": { | |
"r": 45, | |
"g": 104, | |
"b": 84 | |
}, | |
"positionInBook": 584 | |
}, | |
{ | |
"code": "8742 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 106, | |
"b": 94 | |
}, | |
"positionInBook": 585 | |
}, | |
{ | |
"code": "8743 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 106, | |
"b": 102 | |
}, | |
"positionInBook": 586 | |
}, | |
{ | |
"code": "8744 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 114, | |
"b": 118 | |
}, | |
"positionInBook": 587 | |
}, | |
{ | |
"code": "8745 C", | |
"name": null, | |
"rgb": { | |
"r": 10, | |
"g": 120, | |
"b": 129 | |
}, | |
"positionInBook": 588 | |
}, | |
{ | |
"code": "8760 C", | |
"name": null, | |
"rgb": { | |
"r": 35, | |
"g": 98, | |
"b": 97 | |
}, | |
"positionInBook": 589 | |
}, | |
{ | |
"code": "8761 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 95, | |
"b": 104 | |
}, | |
"positionInBook": 590 | |
}, | |
{ | |
"code": "8762 C", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 91, | |
"b": 101 | |
}, | |
"positionInBook": 591 | |
}, | |
{ | |
"code": "8763 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 84, | |
"b": 108 | |
}, | |
"positionInBook": 592 | |
}, | |
{ | |
"code": "8764 C", | |
"name": null, | |
"rgb": { | |
"r": 6, | |
"g": 95, | |
"b": 123 | |
}, | |
"positionInBook": 593 | |
}, | |
{ | |
"code": "8765 C", | |
"name": null, | |
"rgb": { | |
"r": 28, | |
"g": 103, | |
"b": 135 | |
}, | |
"positionInBook": 594 | |
}, | |
{ | |
"code": "8780 C", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 58, | |
"b": 96 | |
}, | |
"positionInBook": 595 | |
}, | |
{ | |
"code": "8781 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 67, | |
"b": 93 | |
}, | |
"positionInBook": 596 | |
}, | |
{ | |
"code": "8782 C", | |
"name": null, | |
"rgb": { | |
"r": 50, | |
"g": 53, | |
"b": 114 | |
}, | |
"positionInBook": 597 | |
}, | |
{ | |
"code": "8783 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 54, | |
"b": 109 | |
}, | |
"positionInBook": 598 | |
}, | |
{ | |
"code": "8784 C", | |
"name": null, | |
"rgb": { | |
"r": 38, | |
"g": 67, | |
"b": 123 | |
}, | |
"positionInBook": 599 | |
}, | |
{ | |
"code": "8785 C", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 76, | |
"b": 134 | |
}, | |
"positionInBook": 600 | |
}, | |
{ | |
"code": "8800 C", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 54, | |
"b": 89 | |
}, | |
"positionInBook": 601 | |
}, | |
{ | |
"code": "8801 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 55, | |
"b": 95 | |
}, | |
"positionInBook": 602 | |
}, | |
{ | |
"code": "8802 C", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 43, | |
"b": 99 | |
}, | |
"positionInBook": 603 | |
}, | |
{ | |
"code": "8803 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 41, | |
"b": 96 | |
}, | |
"positionInBook": 604 | |
}, | |
{ | |
"code": "8804 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 52, | |
"b": 110 | |
}, | |
"positionInBook": 605 | |
}, | |
{ | |
"code": "8805 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 62, | |
"b": 121 | |
}, | |
"positionInBook": 606 | |
}, | |
{ | |
"code": "8820 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 62, | |
"b": 94 | |
}, | |
"positionInBook": 607 | |
}, | |
{ | |
"code": "8821 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 46, | |
"b": 93 | |
}, | |
"positionInBook": 608 | |
}, | |
{ | |
"code": "8822 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 53, | |
"b": 102 | |
}, | |
"positionInBook": 609 | |
}, | |
{ | |
"code": "8823 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 38, | |
"b": 102 | |
}, | |
"positionInBook": 610 | |
}, | |
{ | |
"code": "8824 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 52, | |
"b": 116 | |
}, | |
"positionInBook": 611 | |
}, | |
{ | |
"code": "8825 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 54, | |
"b": 126 | |
}, | |
"positionInBook": 612 | |
}, | |
{ | |
"code": "8840 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 61, | |
"b": 86 | |
}, | |
"positionInBook": 613 | |
}, | |
{ | |
"code": "8841 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 46, | |
"b": 85 | |
}, | |
"positionInBook": 614 | |
}, | |
{ | |
"code": "8842 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 28, | |
"b": 89 | |
}, | |
"positionInBook": 615 | |
}, | |
{ | |
"code": "8843 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 27, | |
"b": 96 | |
}, | |
"positionInBook": 616 | |
}, | |
{ | |
"code": "8844 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 40, | |
"b": 109 | |
}, | |
"positionInBook": 617 | |
}, | |
{ | |
"code": "8845 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 55, | |
"b": 118 | |
}, | |
"positionInBook": 618 | |
}, | |
{ | |
"code": "8860 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 69, | |
"b": 66 | |
}, | |
"positionInBook": 619 | |
}, | |
{ | |
"code": "8861 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 60, | |
"b": 71 | |
}, | |
"positionInBook": 620 | |
}, | |
{ | |
"code": "8862 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 45, | |
"b": 71 | |
}, | |
"positionInBook": 621 | |
}, | |
{ | |
"code": "8863 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 29, | |
"b": 64 | |
}, | |
"positionInBook": 622 | |
}, | |
{ | |
"code": "8864 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 42, | |
"b": 81 | |
}, | |
"positionInBook": 623 | |
}, | |
{ | |
"code": "8865 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 55, | |
"b": 94 | |
}, | |
"positionInBook": 624 | |
}, | |
{ | |
"code": "8880 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 78, | |
"b": 76 | |
}, | |
"positionInBook": 625 | |
}, | |
{ | |
"code": "8881 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 65, | |
"b": 82 | |
}, | |
"positionInBook": 626 | |
}, | |
{ | |
"code": "8882 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 52, | |
"b": 91 | |
}, | |
"positionInBook": 627 | |
}, | |
{ | |
"code": "8883 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 52, | |
"b": 64 | |
}, | |
"positionInBook": 628 | |
}, | |
{ | |
"code": "8884 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 61, | |
"b": 75 | |
}, | |
"positionInBook": 629 | |
}, | |
{ | |
"code": "8885 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 69, | |
"b": 85 | |
}, | |
"positionInBook": 630 | |
}, | |
{ | |
"code": "8900 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 81, | |
"b": 56 | |
}, | |
"positionInBook": 631 | |
}, | |
{ | |
"code": "8901 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 80, | |
"b": 60 | |
}, | |
"positionInBook": 632 | |
}, | |
{ | |
"code": "8902 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 80, | |
"b": 79 | |
}, | |
"positionInBook": 633 | |
}, | |
{ | |
"code": "8903 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 70, | |
"b": 73 | |
}, | |
"positionInBook": 634 | |
}, | |
{ | |
"code": "8904 C", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 78, | |
"b": 87 | |
}, | |
"positionInBook": 635 | |
}, | |
{ | |
"code": "8905 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 82, | |
"b": 93 | |
}, | |
"positionInBook": 636 | |
}, | |
{ | |
"code": "8920 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 93, | |
"b": 66 | |
}, | |
"positionInBook": 637 | |
}, | |
{ | |
"code": "8921 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 82, | |
"b": 41 | |
}, | |
"positionInBook": 638 | |
}, | |
{ | |
"code": "8922 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 79, | |
"b": 13 | |
}, | |
"positionInBook": 639 | |
}, | |
{ | |
"code": "8923 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 74, | |
"b": 31 | |
}, | |
"positionInBook": 640 | |
}, | |
{ | |
"code": "8924 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 79, | |
"b": 45 | |
}, | |
"positionInBook": 641 | |
}, | |
{ | |
"code": "8925 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 84, | |
"b": 56 | |
}, | |
"positionInBook": 642 | |
}, | |
{ | |
"code": "8940 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 99, | |
"b": 41 | |
}, | |
"positionInBook": 643 | |
}, | |
{ | |
"code": "8941 C", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 95, | |
"b": 28 | |
}, | |
"positionInBook": 644 | |
}, | |
{ | |
"code": "8942 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 89, | |
"b": 11 | |
}, | |
"positionInBook": 645 | |
}, | |
{ | |
"code": "8943 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 90, | |
"b": 0 | |
}, | |
"positionInBook": 646 | |
}, | |
{ | |
"code": "8944 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 94, | |
"b": 23 | |
}, | |
"positionInBook": 647 | |
}, | |
{ | |
"code": "8945 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 97, | |
"b": 44 | |
}, | |
"positionInBook": 648 | |
}, | |
{ | |
"code": "8960 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 112, | |
"b": 44 | |
}, | |
"positionInBook": 649 | |
}, | |
{ | |
"code": "8961 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 104, | |
"b": 30 | |
}, | |
"positionInBook": 650 | |
}, | |
{ | |
"code": "8962 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 108, | |
"b": 0 | |
}, | |
"positionInBook": 651 | |
}, | |
{ | |
"code": "8963 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 99, | |
"b": 0 | |
}, | |
"positionInBook": 652 | |
}, | |
{ | |
"code": "8964 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 102, | |
"b": 28 | |
}, | |
"positionInBook": 653 | |
}, | |
{ | |
"code": "8965 C", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 109, | |
"b": 47 | |
}, | |
"positionInBook": 654 | |
} | |
] | |
}, | |
{ | |
"id": "pantoneFhiPolyesterTsx", | |
"colors": [ | |
{ | |
"code": "11-0102 TSX", | |
"name": "Marshmallow Crème", | |
"rgb": { | |
"r": 241, | |
"g": 243, | |
"b": 255 | |
}, | |
"positionInBook": 0 | |
}, | |
{ | |
"code": "11-0109 TSX", | |
"name": "Cappucino Foam", | |
"rgb": { | |
"r": 246, | |
"g": 243, | |
"b": 232 | |
}, | |
"positionInBook": 1 | |
}, | |
{ | |
"code": "11-0203 TSX", | |
"name": "Eggwhite", | |
"rgb": { | |
"r": 239, | |
"g": 234, | |
"b": 231 | |
}, | |
"positionInBook": 2 | |
}, | |
{ | |
"code": "11-0501 TSX", | |
"name": "Baby Powder", | |
"rgb": { | |
"r": 247, | |
"g": 246, | |
"b": 238 | |
}, | |
"positionInBook": 3 | |
}, | |
{ | |
"code": "11-0503 TSX", | |
"name": "Meringue", | |
"rgb": { | |
"r": 250, | |
"g": 243, | |
"b": 227 | |
}, | |
"positionInBook": 4 | |
}, | |
{ | |
"code": "11-0518 TSX", | |
"name": "Béchamel", | |
"rgb": { | |
"r": 247, | |
"g": 236, | |
"b": 197 | |
}, | |
"positionInBook": 5 | |
}, | |
{ | |
"code": "11-0610 TSX", | |
"name": "Silence", | |
"rgb": { | |
"r": 246, | |
"g": 239, | |
"b": 229 | |
}, | |
"positionInBook": 6 | |
}, | |
{ | |
"code": "11-0720 TSX", | |
"name": "Duckling", | |
"rgb": { | |
"r": 241, | |
"g": 234, | |
"b": 172 | |
}, | |
"positionInBook": 7 | |
}, | |
{ | |
"code": "11-4002 TSX", | |
"name": "Powdered Sugar", | |
"rgb": { | |
"r": 241, | |
"g": 244, | |
"b": 255 | |
}, | |
"positionInBook": 8 | |
}, | |
{ | |
"code": "12-0658 TSX", | |
"name": "Highlight", | |
"rgb": { | |
"r": 251, | |
"g": 235, | |
"b": 112 | |
}, | |
"positionInBook": 9 | |
}, | |
{ | |
"code": "12-0660 TSX", | |
"name": "Lemon Fizz", | |
"rgb": { | |
"r": 242, | |
"g": 230, | |
"b": 81 | |
}, | |
"positionInBook": 10 | |
}, | |
{ | |
"code": "12-0739 TSX", | |
"name": "Daisy Floret", | |
"rgb": { | |
"r": 252, | |
"g": 222, | |
"b": 118 | |
}, | |
"positionInBook": 11 | |
}, | |
{ | |
"code": "12-0830 TSX", | |
"name": "Pancake Batter", | |
"rgb": { | |
"r": 234, | |
"g": 210, | |
"b": 149 | |
}, | |
"positionInBook": 12 | |
}, | |
{ | |
"code": "12-2007 TSX", | |
"name": "Little Piglet", | |
"rgb": { | |
"r": 236, | |
"g": 209, | |
"b": 214 | |
}, | |
"positionInBook": 13 | |
}, | |
{ | |
"code": "12-4010 TSX", | |
"name": "Frosted Window", | |
"rgb": { | |
"r": 186, | |
"g": 204, | |
"b": 230 | |
}, | |
"positionInBook": 14 | |
}, | |
{ | |
"code": "12-4102 TSX", | |
"name": "Grout", | |
"rgb": { | |
"r": 207, | |
"g": 212, | |
"b": 215 | |
}, | |
"positionInBook": 15 | |
}, | |
{ | |
"code": "12-4207 TSX", | |
"name": "Quietude", | |
"rgb": { | |
"r": 189, | |
"g": 211, | |
"b": 226 | |
}, | |
"positionInBook": 16 | |
}, | |
{ | |
"code": "12-4401 TSX", | |
"name": "Antique Crinoline", | |
"rgb": { | |
"r": 217, | |
"g": 219, | |
"b": 222 | |
}, | |
"positionInBook": 17 | |
}, | |
{ | |
"code": "13-0201 TSX", | |
"name": "Tiptoe", | |
"rgb": { | |
"r": 190, | |
"g": 189, | |
"b": 191 | |
}, | |
"positionInBook": 18 | |
}, | |
{ | |
"code": "13-0240 TSX", | |
"name": "Tomatillo", | |
"rgb": { | |
"r": 191, | |
"g": 223, | |
"b": 142 | |
}, | |
"positionInBook": 19 | |
}, | |
{ | |
"code": "13-0402 TSX", | |
"name": "Tortilla", | |
"rgb": { | |
"r": 200, | |
"g": 186, | |
"b": 171 | |
}, | |
"positionInBook": 20 | |
}, | |
{ | |
"code": "13-0663 TSX", | |
"name": "Sun Glare", | |
"rgb": { | |
"r": 237, | |
"g": 255, | |
"b": 0 | |
}, | |
"positionInBook": 21 | |
}, | |
{ | |
"code": "13-0716 TSX", | |
"name": "Baked Flan", | |
"rgb": { | |
"r": 214, | |
"g": 196, | |
"b": 158 | |
}, | |
"positionInBook": 22 | |
}, | |
{ | |
"code": "13-0761 TSX", | |
"name": "Spaghetti Squash", | |
"rgb": { | |
"r": 255, | |
"g": 209, | |
"b": 19 | |
}, | |
"positionInBook": 23 | |
}, | |
{ | |
"code": "13-0763 TSX", | |
"name": "Owl's Eye", | |
"rgb": { | |
"r": 255, | |
"g": 191, | |
"b": 58 | |
}, | |
"positionInBook": 24 | |
}, | |
{ | |
"code": "13-1325 TSX", | |
"name": "Alluring Apricot", | |
"rgb": { | |
"r": 255, | |
"g": 192, | |
"b": 160 | |
}, | |
"positionInBook": 25 | |
}, | |
{ | |
"code": "13-1805 TSX", | |
"name": "Pink Gecko", | |
"rgb": { | |
"r": 220, | |
"g": 200, | |
"b": 198 | |
}, | |
"positionInBook": 26 | |
}, | |
{ | |
"code": "13-2820 TSX", | |
"name": "Party Pink", | |
"rgb": { | |
"r": 235, | |
"g": 184, | |
"b": 219 | |
}, | |
"positionInBook": 27 | |
}, | |
{ | |
"code": "13-3512 TSX", | |
"name": "Taffy Batter", | |
"rgb": { | |
"r": 210, | |
"g": 178, | |
"b": 213 | |
}, | |
"positionInBook": 28 | |
}, | |
{ | |
"code": "13-3700 TSX", | |
"name": "Raw Silk", | |
"rgb": { | |
"r": 199, | |
"g": 195, | |
"b": 193 | |
}, | |
"positionInBook": 29 | |
}, | |
{ | |
"code": "13-4014 TSX", | |
"name": "Whispy Blue", | |
"rgb": { | |
"r": 176, | |
"g": 203, | |
"b": 231 | |
}, | |
"positionInBook": 30 | |
}, | |
{ | |
"code": "13-4220 TSX", | |
"name": "Arctic Paradise", | |
"rgb": { | |
"r": 161, | |
"g": 205, | |
"b": 236 | |
}, | |
"positionInBook": 31 | |
}, | |
{ | |
"code": "13-4320 TSX", | |
"name": "Polar Wind", | |
"rgb": { | |
"r": 151, | |
"g": 203, | |
"b": 235 | |
}, | |
"positionInBook": 32 | |
}, | |
{ | |
"code": "13-4421 TSX", | |
"name": "Castaway", | |
"rgb": { | |
"r": 145, | |
"g": 213, | |
"b": 237 | |
}, | |
"positionInBook": 33 | |
}, | |
{ | |
"code": "13-4504 TSX", | |
"name": "Turquenite", | |
"rgb": { | |
"r": 201, | |
"g": 201, | |
"b": 198 | |
}, | |
"positionInBook": 34 | |
}, | |
{ | |
"code": "13-5329 TSX", | |
"name": "Polynya", | |
"rgb": { | |
"r": 118, | |
"g": 218, | |
"b": 211 | |
}, | |
"positionInBook": 35 | |
}, | |
{ | |
"code": "13-6030 TSX", | |
"name": "Carnival Glass", | |
"rgb": { | |
"r": 129, | |
"g": 228, | |
"b": 189 | |
}, | |
"positionInBook": 36 | |
}, | |
{ | |
"code": "14-0255 TSX", | |
"name": "Kohlrabi", | |
"rgb": { | |
"r": 156, | |
"g": 207, | |
"b": 101 | |
}, | |
"positionInBook": 37 | |
}, | |
{ | |
"code": "14-0543 TSX", | |
"name": "Spider Mum", | |
"rgb": { | |
"r": 192, | |
"g": 198, | |
"b": 115 | |
}, | |
"positionInBook": 38 | |
}, | |
{ | |
"code": "14-0926 TSX", | |
"name": "Sunflower Seed", | |
"rgb": { | |
"r": 211, | |
"g": 194, | |
"b": 143 | |
}, | |
"positionInBook": 39 | |
}, | |
{ | |
"code": "14-0937 TSX", | |
"name": "Banana Pudding", | |
"rgb": { | |
"r": 212, | |
"g": 178, | |
"b": 101 | |
}, | |
"positionInBook": 40 | |
}, | |
{ | |
"code": "14-0938 TSX", | |
"name": "Ancient Grain", | |
"rgb": { | |
"r": 211, | |
"g": 183, | |
"b": 129 | |
}, | |
"positionInBook": 41 | |
}, | |
{ | |
"code": "14-1140 TSX", | |
"name": "Iced Mango", | |
"rgb": { | |
"r": 255, | |
"g": 173, | |
"b": 79 | |
}, | |
"positionInBook": 42 | |
}, | |
{ | |
"code": "14-1229 TSX", | |
"name": "Euphorbia", | |
"rgb": { | |
"r": 254, | |
"g": 171, | |
"b": 115 | |
}, | |
"positionInBook": 43 | |
}, | |
{ | |
"code": "14-1325 TSX", | |
"name": "Peach Pie", | |
"rgb": { | |
"r": 255, | |
"g": 168, | |
"b": 139 | |
}, | |
"positionInBook": 44 | |
}, | |
{ | |
"code": "14-1519 TSX", | |
"name": "Sugar Honey Glaze", | |
"rgb": { | |
"r": 219, | |
"g": 175, | |
"b": 170 | |
}, | |
"positionInBook": 45 | |
}, | |
{ | |
"code": "14-1906 TSX", | |
"name": "Boto Dolphin", | |
"rgb": { | |
"r": 217, | |
"g": 173, | |
"b": 172 | |
}, | |
"positionInBook": 46 | |
}, | |
{ | |
"code": "14-2116 TSX", | |
"name": "Fairy Wing", | |
"rgb": { | |
"r": 230, | |
"g": 179, | |
"b": 192 | |
}, | |
"positionInBook": 47 | |
}, | |
{ | |
"code": "14-2810 TSX", | |
"name": "Charm Pink", | |
"rgb": { | |
"r": 222, | |
"g": 187, | |
"b": 201 | |
}, | |
"positionInBook": 48 | |
}, | |
{ | |
"code": "14-3005 TSX", | |
"name": "Mauve Echo", | |
"rgb": { | |
"r": 208, | |
"g": 189, | |
"b": 194 | |
}, | |
"positionInBook": 49 | |
}, | |
{ | |
"code": "14-3606 TSX", | |
"name": "Celestial Dusk", | |
"rgb": { | |
"r": 199, | |
"g": 189, | |
"b": 206 | |
}, | |
"positionInBook": 50 | |
}, | |
{ | |
"code": "14-3902 TSX", | |
"name": "Dream of Cotton", | |
"rgb": { | |
"r": 192, | |
"g": 178, | |
"b": 190 | |
}, | |
"positionInBook": 51 | |
}, | |
{ | |
"code": "14-3921 TSX", | |
"name": "Lacecap Hydrangea", | |
"rgb": { | |
"r": 150, | |
"g": 179, | |
"b": 222 | |
}, | |
"positionInBook": 52 | |
}, | |
{ | |
"code": "14-4003 TSX", | |
"name": "Staple", | |
"rgb": { | |
"r": 184, | |
"g": 180, | |
"b": 185 | |
}, | |
"positionInBook": 53 | |
}, | |
{ | |
"code": "14-4204 TSX", | |
"name": "Rare Coin", | |
"rgb": { | |
"r": 185, | |
"g": 188, | |
"b": 191 | |
}, | |
"positionInBook": 54 | |
}, | |
{ | |
"code": "14-4434 TSX", | |
"name": "Aged Copper", | |
"rgb": { | |
"r": 92, | |
"g": 200, | |
"b": 215 | |
}, | |
"positionInBook": 55 | |
}, | |
{ | |
"code": "14-4703 TSX", | |
"name": "Gray Day", | |
"rgb": { | |
"r": 179, | |
"g": 179, | |
"b": 176 | |
}, | |
"positionInBook": 56 | |
}, | |
{ | |
"code": "14-4803 TSX", | |
"name": "Woven Rush", | |
"rgb": { | |
"r": 187, | |
"g": 190, | |
"b": 189 | |
}, | |
"positionInBook": 57 | |
}, | |
{ | |
"code": "15-0262 TSX", | |
"name": "Lime Zest", | |
"rgb": { | |
"r": 123, | |
"g": 183, | |
"b": 61 | |
}, | |
"positionInBook": 58 | |
}, | |
{ | |
"code": "15-0722 TSX", | |
"name": "Lioness", | |
"rgb": { | |
"r": 192, | |
"g": 172, | |
"b": 122 | |
}, | |
"positionInBook": 59 | |
}, | |
{ | |
"code": "15-1260 TSX", | |
"name": "Fall Fantasy", | |
"rgb": { | |
"r": 255, | |
"g": 144, | |
"b": 38 | |
}, | |
"positionInBook": 60 | |
}, | |
{ | |
"code": "15-1351 TSX", | |
"name": "Candied Yams", | |
"rgb": { | |
"r": 255, | |
"g": 132, | |
"b": 73 | |
}, | |
"positionInBook": 61 | |
}, | |
{ | |
"code": "15-1363 TSX", | |
"name": "Live Wire", | |
"rgb": { | |
"r": 255, | |
"g": 159, | |
"b": 103 | |
}, | |
"positionInBook": 62 | |
}, | |
{ | |
"code": "15-1408 TSX", | |
"name": "Junco", | |
"rgb": { | |
"r": 190, | |
"g": 172, | |
"b": 156 | |
}, | |
"positionInBook": 63 | |
}, | |
{ | |
"code": "15-1609 TSX", | |
"name": "Pink Suede", | |
"rgb": { | |
"r": 190, | |
"g": 157, | |
"b": 155 | |
}, | |
"positionInBook": 64 | |
}, | |
{ | |
"code": "15-1619 TSX", | |
"name": "Pressed Rose", | |
"rgb": { | |
"r": 216, | |
"g": 156, | |
"b": 154 | |
}, | |
"positionInBook": 65 | |
}, | |
{ | |
"code": "15-1863 TSX", | |
"name": "Candy Kiss", | |
"rgb": { | |
"r": 255, | |
"g": 86, | |
"b": 150 | |
}, | |
"positionInBook": 66 | |
}, | |
{ | |
"code": "15-2615 TSX", | |
"name": "Bashful Blush", | |
"rgb": { | |
"r": 210, | |
"g": 166, | |
"b": 174 | |
}, | |
"positionInBook": 67 | |
}, | |
{ | |
"code": "15-3407 TSX", | |
"name": "La La Lovely", | |
"rgb": { | |
"r": 186, | |
"g": 160, | |
"b": 179 | |
}, | |
"positionInBook": 68 | |
}, | |
{ | |
"code": "15-3814 TSX", | |
"name": "Mystic Violet", | |
"rgb": { | |
"r": 173, | |
"g": 161, | |
"b": 195 | |
}, | |
"positionInBook": 69 | |
}, | |
{ | |
"code": "15-3918 TSX", | |
"name": "Baby Blue Jay", | |
"rgb": { | |
"r": 154, | |
"g": 177, | |
"b": 218 | |
}, | |
"positionInBook": 70 | |
}, | |
{ | |
"code": "15-4128 TSX", | |
"name": "Comet Sea Star", | |
"rgb": { | |
"r": 114, | |
"g": 170, | |
"b": 216 | |
}, | |
"positionInBook": 71 | |
}, | |
{ | |
"code": "15-4321 TSX", | |
"name": "Fountain Wish", | |
"rgb": { | |
"r": 122, | |
"g": 179, | |
"b": 202 | |
}, | |
"positionInBook": 72 | |
}, | |
{ | |
"code": "15-4333 TSX", | |
"name": "Out of the Blue", | |
"rgb": { | |
"r": 0, | |
"g": 164, | |
"b": 204 | |
}, | |
"positionInBook": 73 | |
}, | |
{ | |
"code": "15-4535 TSX", | |
"name": "Blue Blossom", | |
"rgb": { | |
"r": 45, | |
"g": 168, | |
"b": 216 | |
}, | |
"positionInBook": 74 | |
}, | |
{ | |
"code": "16-0102 TSX", | |
"name": "Wolf Tail", | |
"rgb": { | |
"r": 149, | |
"g": 147, | |
"b": 147 | |
}, | |
"positionInBook": 75 | |
}, | |
{ | |
"code": "16-0163 TSX", | |
"name": "Lounge Lizard", | |
"rgb": { | |
"r": 154, | |
"g": 255, | |
"b": 28 | |
}, | |
"positionInBook": 76 | |
}, | |
{ | |
"code": "16-0223 TSX", | |
"name": "Bull Kelp", | |
"rgb": { | |
"r": 121, | |
"g": 144, | |
"b": 108 | |
}, | |
"positionInBook": 77 | |
}, | |
{ | |
"code": "16-1030 TSX", | |
"name": "Peanut Butter", | |
"rgb": { | |
"r": 181, | |
"g": 149, | |
"b": 98 | |
}, | |
"positionInBook": 78 | |
}, | |
{ | |
"code": "16-1311 TSX", | |
"name": "Coconut Husk", | |
"rgb": { | |
"r": 170, | |
"g": 159, | |
"b": 138 | |
}, | |
"positionInBook": 79 | |
}, | |
{ | |
"code": "16-1355 TSX", | |
"name": "Orange Slice", | |
"rgb": { | |
"r": 254, | |
"g": 109, | |
"b": 0 | |
}, | |
"positionInBook": 80 | |
}, | |
{ | |
"code": "16-1404 TSX", | |
"name": "River Rock", | |
"rgb": { | |
"r": 183, | |
"g": 162, | |
"b": 144 | |
}, | |
"positionInBook": 81 | |
}, | |
{ | |
"code": "16-1530 TSX", | |
"name": "Coral Chic", | |
"rgb": { | |
"r": 255, | |
"g": 130, | |
"b": 112 | |
}, | |
"positionInBook": 82 | |
}, | |
{ | |
"code": "16-1534 TSX", | |
"name": "Blush Beauty", | |
"rgb": { | |
"r": 229, | |
"g": 120, | |
"b": 104 | |
}, | |
"positionInBook": 83 | |
}, | |
{ | |
"code": "16-1634 TSX", | |
"name": "Ranunculus", | |
"rgb": { | |
"r": 236, | |
"g": 139, | |
"b": 141 | |
}, | |
"positionInBook": 84 | |
}, | |
{ | |
"code": "16-1663 TSX", | |
"name": "Siesta", | |
"rgb": { | |
"r": 255, | |
"g": 106, | |
"b": 110 | |
}, | |
"positionInBook": 85 | |
}, | |
{ | |
"code": "16-3209 TSX", | |
"name": "Discreet Mauve ", | |
"rgb": { | |
"r": 169, | |
"g": 140, | |
"b": 155 | |
}, | |
"positionInBook": 86 | |
}, | |
{ | |
"code": "16-3902 TSX", | |
"name": "Squirrel", | |
"rgb": { | |
"r": 161, | |
"g": 156, | |
"b": 156 | |
}, | |
"positionInBook": 87 | |
}, | |
{ | |
"code": "16-3936 TSX", | |
"name": "Coastline Blue", | |
"rgb": { | |
"r": 125, | |
"g": 149, | |
"b": 206 | |
}, | |
"positionInBook": 88 | |
}, | |
{ | |
"code": "16-4002 TSX", | |
"name": "Concrete", | |
"rgb": { | |
"r": 148, | |
"g": 148, | |
"b": 151 | |
}, | |
"positionInBook": 89 | |
}, | |
{ | |
"code": "16-4036 TSX", | |
"name": "Blue Perennial", | |
"rgb": { | |
"r": 75, | |
"g": 129, | |
"b": 191 | |
}, | |
"positionInBook": 90 | |
}, | |
{ | |
"code": "16-4102 TSX", | |
"name": "Trouser", | |
"rgb": { | |
"r": 158, | |
"g": 159, | |
"b": 162 | |
}, | |
"positionInBook": 91 | |
}, | |
{ | |
"code": "16-4126 TSX", | |
"name": "Swimsuit", | |
"rgb": { | |
"r": 95, | |
"g": 149, | |
"b": 190 | |
}, | |
"positionInBook": 92 | |
}, | |
{ | |
"code": "16-4403 TSX", | |
"name": "Skyscraper", | |
"rgb": { | |
"r": 145, | |
"g": 145, | |
"b": 147 | |
}, | |
"positionInBook": 93 | |
}, | |
{ | |
"code": "16-4704 TSX", | |
"name": "Thundercloud", | |
"rgb": { | |
"r": 122, | |
"g": 123, | |
"b": 125 | |
}, | |
"positionInBook": 94 | |
}, | |
{ | |
"code": "16-5128 TSX", | |
"name": "Jaded", | |
"rgb": { | |
"r": 82, | |
"g": 172, | |
"b": 170 | |
}, | |
"positionInBook": 95 | |
}, | |
{ | |
"code": "16-5616 TSX", | |
"name": "Weathered Metal", | |
"rgb": { | |
"r": 107, | |
"g": 155, | |
"b": 163 | |
}, | |
"positionInBook": 96 | |
}, | |
{ | |
"code": "16-6264 TSX", | |
"name": "Green Spring", | |
"rgb": { | |
"r": 0, | |
"g": 169, | |
"b": 60 | |
}, | |
"positionInBook": 97 | |
}, | |
{ | |
"code": "17-0104 TSX", | |
"name": "Rooftop", | |
"rgb": { | |
"r": 123, | |
"g": 118, | |
"b": 122 | |
}, | |
"positionInBook": 98 | |
}, | |
{ | |
"code": "17-0112 TSX", | |
"name": "Matte Green", | |
"rgb": { | |
"r": 126, | |
"g": 135, | |
"b": 114 | |
}, | |
"positionInBook": 99 | |
}, | |
{ | |
"code": "17-0542 TSX", | |
"name": "Pepper Stem", | |
"rgb": { | |
"r": 141, | |
"g": 148, | |
"b": 64 | |
}, | |
"positionInBook": 100 | |
}, | |
{ | |
"code": "17-0606 TSX", | |
"name": "Crusted Gravel", | |
"rgb": { | |
"r": 137, | |
"g": 134, | |
"b": 122 | |
}, | |
"positionInBook": 101 | |
}, | |
{ | |
"code": "17-1220 TSX", | |
"name": "Affogato", | |
"rgb": { | |
"r": 168, | |
"g": 139, | |
"b": 112 | |
}, | |
"positionInBook": 102 | |
}, | |
{ | |
"code": "17-1323 TSX", | |
"name": "Poulet Saute", | |
"rgb": { | |
"r": 155, | |
"g": 101, | |
"b": 76 | |
}, | |
"positionInBook": 103 | |
}, | |
{ | |
"code": "17-1363 TSX", | |
"name": "Exuberant Orange", | |
"rgb": { | |
"r": 255, | |
"g": 88, | |
"b": 45 | |
}, | |
"positionInBook": 104 | |
}, | |
{ | |
"code": "17-1402 TSX", | |
"name": "Newsprint", | |
"rgb": { | |
"r": 91, | |
"g": 87, | |
"b": 88 | |
}, | |
"positionInBook": 105 | |
}, | |
{ | |
"code": "17-1403 TSX", | |
"name": "Gray Hawk", | |
"rgb": { | |
"r": 127, | |
"g": 124, | |
"b": 122 | |
}, | |
"positionInBook": 106 | |
}, | |
{ | |
"code": "17-1421 TSX", | |
"name": "Deer", | |
"rgb": { | |
"r": 155, | |
"g": 115, | |
"b": 107 | |
}, | |
"positionInBook": 107 | |
}, | |
{ | |
"code": "17-1460 TSX", | |
"name": "Firelight", | |
"rgb": { | |
"r": 236, | |
"g": 78, | |
"b": 70 | |
}, | |
"positionInBook": 108 | |
}, | |
{ | |
"code": "17-1541 TSX", | |
"name": "Persimmon Glaze", | |
"rgb": { | |
"r": 223, | |
"g": 87, | |
"b": 80 | |
}, | |
"positionInBook": 109 | |
}, | |
{ | |
"code": "17-1561 TSX", | |
"name": "Red Maple", | |
"rgb": { | |
"r": 208, | |
"g": 45, | |
"b": 35 | |
}, | |
"positionInBook": 110 | |
}, | |
{ | |
"code": "17-2255 TSX", | |
"name": "Cheeky Pink", | |
"rgb": { | |
"r": 245, | |
"g": 89, | |
"b": 149 | |
}, | |
"positionInBook": 111 | |
}, | |
{ | |
"code": "17-2523 TSX", | |
"name": "Rose Bouquet", | |
"rgb": { | |
"r": 194, | |
"g": 119, | |
"b": 148 | |
}, | |
"positionInBook": 112 | |
}, | |
{ | |
"code": "17-3316 TSX", | |
"name": "Purple Jasper", | |
"rgb": { | |
"r": 153, | |
"g": 116, | |
"b": 143 | |
}, | |
"positionInBook": 113 | |
}, | |
{ | |
"code": "17-3763 TSX", | |
"name": "Afterparty", | |
"rgb": { | |
"r": 111, | |
"g": 84, | |
"b": 161 | |
}, | |
"positionInBook": 114 | |
}, | |
{ | |
"code": "17-3805 TSX", | |
"name": "Ube Pudding", | |
"rgb": { | |
"r": 150, | |
"g": 141, | |
"b": 158 | |
}, | |
"positionInBook": 115 | |
}, | |
{ | |
"code": "17-3818 TSX", | |
"name": "Purple Yam", | |
"rgb": { | |
"r": 129, | |
"g": 118, | |
"b": 160 | |
}, | |
"positionInBook": 116 | |
}, | |
{ | |
"code": "17-3921 TSX", | |
"name": "Faded Ticking", | |
"rgb": { | |
"r": 103, | |
"g": 115, | |
"b": 153 | |
}, | |
"positionInBook": 117 | |
}, | |
{ | |
"code": "17-3931 TSX", | |
"name": "Sea Urchin", | |
"rgb": { | |
"r": 99, | |
"g": 116, | |
"b": 165 | |
}, | |
"positionInBook": 118 | |
}, | |
{ | |
"code": "17-4002 TSX", | |
"name": "Mysterious", | |
"rgb": { | |
"r": 139, | |
"g": 139, | |
"b": 141 | |
}, | |
"positionInBook": 119 | |
}, | |
{ | |
"code": "17-4022 TSX", | |
"name": "Top O The Morning", | |
"rgb": { | |
"r": 100, | |
"g": 130, | |
"b": 176 | |
}, | |
"positionInBook": 120 | |
}, | |
{ | |
"code": "17-4130 TSX", | |
"name": "Diving Hole", | |
"rgb": { | |
"r": 53, | |
"g": 116, | |
"b": 165 | |
}, | |
"positionInBook": 121 | |
}, | |
{ | |
"code": "17-4303 TSX", | |
"name": "Igneous Rock", | |
"rgb": { | |
"r": 146, | |
"g": 151, | |
"b": 155 | |
}, | |
"positionInBook": 122 | |
}, | |
{ | |
"code": "17-4563 TSX", | |
"name": "Spring Break", | |
"rgb": { | |
"r": 0, | |
"g": 141, | |
"b": 204 | |
}, | |
"positionInBook": 123 | |
}, | |
{ | |
"code": "17-6156 TSX", | |
"name": "Irish Jig", | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 58 | |
}, | |
"positionInBook": 124 | |
}, | |
{ | |
"code": "18-0416 TSX", | |
"name": "Terrarium Moss", | |
"rgb": { | |
"r": 97, | |
"g": 98, | |
"b": 71 | |
}, | |
"positionInBook": 125 | |
}, | |
{ | |
"code": "18-0425 TSX", | |
"name": "Commander Green", | |
"rgb": { | |
"r": 107, | |
"g": 109, | |
"b": 64 | |
}, | |
"positionInBook": 126 | |
}, | |
{ | |
"code": "18-0614 TSX", | |
"name": "Mountain Pass", | |
"rgb": { | |
"r": 118, | |
"g": 107, | |
"b": 79 | |
}, | |
"positionInBook": 127 | |
}, | |
{ | |
"code": "18-0818 TSX", | |
"name": "Espresso Parfait", | |
"rgb": { | |
"r": 118, | |
"g": 98, | |
"b": 78 | |
}, | |
"positionInBook": 128 | |
}, | |
{ | |
"code": "18-0921 TSX", | |
"name": "Groundhog", | |
"rgb": { | |
"r": 133, | |
"g": 100, | |
"b": 73 | |
}, | |
"positionInBook": 129 | |
}, | |
{ | |
"code": "18-1032 TSX", | |
"name": "Crimini", | |
"rgb": { | |
"r": 138, | |
"g": 108, | |
"b": 86 | |
}, | |
"positionInBook": 130 | |
}, | |
{ | |
"code": "18-1123 TSX", | |
"name": "Rum Caramel", | |
"rgb": { | |
"r": 137, | |
"g": 101, | |
"b": 78 | |
}, | |
"positionInBook": 131 | |
}, | |
{ | |
"code": "18-1446 TSX", | |
"name": "Fire Finch", | |
"rgb": { | |
"r": 175, | |
"g": 58, | |
"b": 47 | |
}, | |
"positionInBook": 132 | |
}, | |
{ | |
"code": "18-1548 TSX", | |
"name": "Winery", | |
"rgb": { | |
"r": 166, | |
"g": 52, | |
"b": 58 | |
}, | |
"positionInBook": 133 | |
}, | |
{ | |
"code": "18-1560 TSX", | |
"name": "Mandevilla Red", | |
"rgb": { | |
"r": 218, | |
"g": 58, | |
"b": 44 | |
}, | |
"positionInBook": 134 | |
}, | |
{ | |
"code": "18-1624 TSX", | |
"name": "Redwood Trail", | |
"rgb": { | |
"r": 173, | |
"g": 105, | |
"b": 107 | |
}, | |
"positionInBook": 135 | |
}, | |
{ | |
"code": "18-1645 TSX", | |
"name": "Valiant Red", | |
"rgb": { | |
"r": 155, | |
"g": 40, | |
"b": 60 | |
}, | |
"positionInBook": 136 | |
}, | |
{ | |
"code": "18-1647 TSX", | |
"name": "Rosella", | |
"rgb": { | |
"r": 198, | |
"g": 39, | |
"b": 52 | |
}, | |
"positionInBook": 137 | |
}, | |
{ | |
"code": "18-1650 TSX", | |
"name": "Endangered", | |
"rgb": { | |
"r": 205, | |
"g": 36, | |
"b": 40 | |
}, | |
"positionInBook": 138 | |
}, | |
{ | |
"code": "18-1656 TSX", | |
"name": "Fierce", | |
"rgb": { | |
"r": 197, | |
"g": 31, | |
"b": 49 | |
}, | |
"positionInBook": 139 | |
}, | |
{ | |
"code": "18-1726 TSX", | |
"name": "Red Moscato", | |
"rgb": { | |
"r": 166, | |
"g": 88, | |
"b": 101 | |
}, | |
"positionInBook": 140 | |
}, | |
{ | |
"code": "18-1850 TSX", | |
"name": "Red Lacquer", | |
"rgb": { | |
"r": 157, | |
"g": 39, | |
"b": 62 | |
}, | |
"positionInBook": 141 | |
}, | |
{ | |
"code": "18-1855 TSX", | |
"name": "Berry Pinwheel", | |
"rgb": { | |
"r": 193, | |
"g": 52, | |
"b": 88 | |
}, | |
"positionInBook": 142 | |
}, | |
{ | |
"code": "18-1935 TSX", | |
"name": "Red Velvet", | |
"rgb": { | |
"r": 127, | |
"g": 42, | |
"b": 60 | |
}, | |
"positionInBook": 143 | |
}, | |
{ | |
"code": "18-2054 TSX", | |
"name": "Bossy Pink", | |
"rgb": { | |
"r": 206, | |
"g": 61, | |
"b": 102 | |
}, | |
"positionInBook": 144 | |
}, | |
{ | |
"code": "18-2350 TSX", | |
"name": "Boudoir Red", | |
"rgb": { | |
"r": 177, | |
"g": 39, | |
"b": 99 | |
}, | |
"positionInBook": 145 | |
}, | |
{ | |
"code": "18-2534 TSX", | |
"name": "Dried Hydrangea", | |
"rgb": { | |
"r": 153, | |
"g": 68, | |
"b": 101 | |
}, | |
"positionInBook": 146 | |
}, | |
{ | |
"code": "18-3616 TSX", | |
"name": "Plum Smoothie", | |
"rgb": { | |
"r": 123, | |
"g": 107, | |
"b": 141 | |
}, | |
"positionInBook": 147 | |
}, | |
{ | |
"code": "18-3915 TSX", | |
"name": "Admiral", | |
"rgb": { | |
"r": 85, | |
"g": 92, | |
"b": 131 | |
}, | |
"positionInBook": 148 | |
}, | |
{ | |
"code": "18-3934 TSX", | |
"name": "Blueberry Pie", | |
"rgb": { | |
"r": 70, | |
"g": 94, | |
"b": 152 | |
}, | |
"positionInBook": 149 | |
}, | |
{ | |
"code": "18-4007 TSX", | |
"name": "Gray Fluorite", | |
"rgb": { | |
"r": 108, | |
"g": 106, | |
"b": 111 | |
}, | |
"positionInBook": 150 | |
}, | |
{ | |
"code": "18-4031 TSX", | |
"name": "Moody", | |
"rgb": { | |
"r": 67, | |
"g": 106, | |
"b": 159 | |
}, | |
"positionInBook": 151 | |
}, | |
{ | |
"code": "18-4063 TSX", | |
"name": "Blue Tattoo", | |
"rgb": { | |
"r": 43, | |
"g": 79, | |
"b": 156 | |
}, | |
"positionInBook": 152 | |
}, | |
{ | |
"code": "18-4142 TSX", | |
"name": "Egyptian Blue", | |
"rgb": { | |
"r": 0, | |
"g": 96, | |
"b": 174 | |
}, | |
"positionInBook": 153 | |
}, | |
{ | |
"code": "18-4147 TSX", | |
"name": "Blue Sea Star", | |
"rgb": { | |
"r": 0, | |
"g": 108, | |
"b": 188 | |
}, | |
"positionInBook": 154 | |
}, | |
{ | |
"code": "18-4230 TSX", | |
"name": "Blue Raspberry", | |
"rgb": { | |
"r": 39, | |
"g": 124, | |
"b": 164 | |
}, | |
"positionInBook": 155 | |
}, | |
{ | |
"code": "18-4331 TSX", | |
"name": "Stunning Blue", | |
"rgb": { | |
"r": 0, | |
"g": 116, | |
"b": 149 | |
}, | |
"positionInBook": 156 | |
}, | |
{ | |
"code": "18-4333 TSX", | |
"name": "Tumultuous Sea", | |
"rgb": { | |
"r": 0, | |
"g": 111, | |
"b": 136 | |
}, | |
"positionInBook": 157 | |
}, | |
{ | |
"code": "18-4403 TSX", | |
"name": "Manatee", | |
"rgb": { | |
"r": 106, | |
"g": 104, | |
"b": 100 | |
}, | |
"positionInBook": 158 | |
}, | |
{ | |
"code": "18-5545 TSX", | |
"name": "Tennis Court", | |
"rgb": { | |
"r": 0, | |
"g": 133, | |
"b": 102 | |
}, | |
"positionInBook": 159 | |
}, | |
{ | |
"code": "18-6032 TSX", | |
"name": "Putting Green", | |
"rgb": { | |
"r": 10, | |
"g": 114, | |
"b": 72 | |
}, | |
"positionInBook": 160 | |
}, | |
{ | |
"code": "18-6329 TSX", | |
"name": "Scallion", | |
"rgb": { | |
"r": 42, | |
"g": 103, | |
"b": 53 | |
}, | |
"positionInBook": 161 | |
}, | |
{ | |
"code": "19-0202 TSX", | |
"name": "Stingray", | |
"rgb": { | |
"r": 87, | |
"g": 87, | |
"b": 92 | |
}, | |
"positionInBook": 162 | |
}, | |
{ | |
"code": "19-0204 TSX", | |
"name": "Black Lava", | |
"rgb": { | |
"r": 80, | |
"g": 76, | |
"b": 80 | |
}, | |
"positionInBook": 163 | |
}, | |
{ | |
"code": "19-0308 TSX", | |
"name": "Fly Fishing", | |
"rgb": { | |
"r": 84, | |
"g": 90, | |
"b": 83 | |
}, | |
"positionInBook": 164 | |
}, | |
{ | |
"code": "19-0310 TSX", | |
"name": "Camping Green", | |
"rgb": { | |
"r": 68, | |
"g": 83, | |
"b": 72 | |
}, | |
"positionInBook": 165 | |
}, | |
{ | |
"code": "19-0504 TSX", | |
"name": "Black Lichen", | |
"rgb": { | |
"r": 87, | |
"g": 84, | |
"b": 74 | |
}, | |
"positionInBook": 166 | |
}, | |
{ | |
"code": "19-0507 TSX", | |
"name": "Industrial Green", | |
"rgb": { | |
"r": 97, | |
"g": 92, | |
"b": 80 | |
}, | |
"positionInBook": 167 | |
}, | |
{ | |
"code": "19-0805 TSX", | |
"name": "Brown Granite", | |
"rgb": { | |
"r": 97, | |
"g": 85, | |
"b": 80 | |
}, | |
"positionInBook": 168 | |
}, | |
{ | |
"code": "19-0914 TSX", | |
"name": "Fertile Soil", | |
"rgb": { | |
"r": 86, | |
"g": 61, | |
"b": 49 | |
}, | |
"positionInBook": 169 | |
}, | |
{ | |
"code": "19-1117 TSX", | |
"name": "Chocolate Cremoso", | |
"rgb": { | |
"r": 105, | |
"g": 70, | |
"b": 52 | |
}, | |
"positionInBook": 170 | |
}, | |
{ | |
"code": "19-1206 TSX", | |
"name": "Ristretto", | |
"rgb": { | |
"r": 63, | |
"g": 50, | |
"b": 48 | |
}, | |
"positionInBook": 171 | |
}, | |
{ | |
"code": "19-1410 TSX", | |
"name": "Chocolate Drizzle", | |
"rgb": { | |
"r": 72, | |
"g": 42, | |
"b": 43 | |
}, | |
"positionInBook": 172 | |
}, | |
{ | |
"code": "19-1520 TSX", | |
"name": "Goth Red", | |
"rgb": { | |
"r": 108, | |
"g": 56, | |
"b": 67 | |
}, | |
"positionInBook": 173 | |
}, | |
{ | |
"code": "19-1661 TSX", | |
"name": "Vigilance ", | |
"rgb": { | |
"r": 184, | |
"g": 37, | |
"b": 50 | |
}, | |
"positionInBook": 174 | |
}, | |
{ | |
"code": "19-1730 TSX", | |
"name": "Carriage Red", | |
"rgb": { | |
"r": 117, | |
"g": 46, | |
"b": 53 | |
}, | |
"positionInBook": 175 | |
}, | |
{ | |
"code": "19-1941 TSX", | |
"name": "Raspberry Fudge", | |
"rgb": { | |
"r": 114, | |
"g": 48, | |
"b": 63 | |
}, | |
"positionInBook": 176 | |
}, | |
{ | |
"code": "19-2223 TSX", | |
"name": "Plummed Depths ", | |
"rgb": { | |
"r": 103, | |
"g": 45, | |
"b": 75 | |
}, | |
"positionInBook": 177 | |
}, | |
{ | |
"code": "19-2537 TSX", | |
"name": "Berry Wine", | |
"rgb": { | |
"r": 133, | |
"g": 47, | |
"b": 89 | |
}, | |
"positionInBook": 178 | |
}, | |
{ | |
"code": "19-3623 TSX", | |
"name": "Tattoo", | |
"rgb": { | |
"r": 80, | |
"g": 56, | |
"b": 86 | |
}, | |
"positionInBook": 179 | |
}, | |
{ | |
"code": "19-3629 TSX", | |
"name": "Purple Pak Choi", | |
"rgb": { | |
"r": 87, | |
"g": 49, | |
"b": 107 | |
}, | |
"positionInBook": 180 | |
}, | |
{ | |
"code": "19-3829 TSX", | |
"name": "Violet Crescent", | |
"rgb": { | |
"r": 82, | |
"g": 64, | |
"b": 121 | |
}, | |
"positionInBook": 181 | |
}, | |
{ | |
"code": "19-3904 TSX", | |
"name": "Char", | |
"rgb": { | |
"r": 41, | |
"g": 41, | |
"b": 46 | |
}, | |
"positionInBook": 182 | |
}, | |
{ | |
"code": "19-3931 TSX", | |
"name": "Ink Blot", | |
"rgb": { | |
"r": 78, | |
"g": 74, | |
"b": 114 | |
}, | |
"positionInBook": 183 | |
}, | |
{ | |
"code": "19-3941 TSX", | |
"name": "Midnight Sapphire", | |
"rgb": { | |
"r": 51, | |
"g": 72, | |
"b": 130 | |
}, | |
"positionInBook": 184 | |
}, | |
{ | |
"code": "19-3949 TSX", | |
"name": "?Blackberry Jam", | |
"rgb": { | |
"r": 48, | |
"g": 36, | |
"b": 83 | |
}, | |
"positionInBook": 185 | |
}, | |
{ | |
"code": "19-4002 TSX", | |
"name": "Basalt", | |
"rgb": { | |
"r": 84, | |
"g": 80, | |
"b": 88 | |
}, | |
"positionInBook": 186 | |
}, | |
{ | |
"code": "19-4032 TSX", | |
"name": "Fathom Blue", | |
"rgb": { | |
"r": 57, | |
"g": 53, | |
"b": 82 | |
}, | |
"positionInBook": 187 | |
}, | |
{ | |
"code": "19-4036 TSX", | |
"name": "Astral Night", | |
"rgb": { | |
"r": 53, | |
"g": 53, | |
"b": 84 | |
}, | |
"positionInBook": 188 | |
}, | |
{ | |
"code": "19-4040 TSX", | |
"name": "Blue Pansy", | |
"rgb": { | |
"r": 31, | |
"g": 55, | |
"b": 95 | |
}, | |
"positionInBook": 189 | |
}, | |
{ | |
"code": "19-4107 TSX", | |
"name": "Cavernous", | |
"rgb": { | |
"r": 38, | |
"g": 39, | |
"b": 42 | |
}, | |
"positionInBook": 190 | |
}, | |
{ | |
"code": "19-4113 TSX", | |
"name": "Nautilus", | |
"rgb": { | |
"r": 33, | |
"g": 56, | |
"b": 78 | |
}, | |
"positionInBook": 191 | |
}, | |
{ | |
"code": "19-4119 TSX", | |
"name": "Blueberry Pancake", | |
"rgb": { | |
"r": 30, | |
"g": 63, | |
"b": 99 | |
}, | |
"positionInBook": 192 | |
}, | |
{ | |
"code": "19-4123 TSX", | |
"name": "Blue Grouper", | |
"rgb": { | |
"r": 38, | |
"g": 75, | |
"b": 114 | |
}, | |
"positionInBook": 193 | |
}, | |
{ | |
"code": "19-4135 TSX", | |
"name": "Nobility", | |
"rgb": { | |
"r": 0, | |
"g": 98, | |
"b": 156 | |
}, | |
"positionInBook": 194 | |
}, | |
{ | |
"code": "19-4201 TSX", | |
"name": "Tuxedo", | |
"rgb": { | |
"r": 37, | |
"g": 38, | |
"b": 41 | |
}, | |
"positionInBook": 195 | |
}, | |
{ | |
"code": "19-4221 TSX", | |
"name": "Blue Tincture", | |
"rgb": { | |
"r": 40, | |
"g": 91, | |
"b": 125 | |
}, | |
"positionInBook": 196 | |
}, | |
{ | |
"code": "19-4231 TSX", | |
"name": "Evening Azure", | |
"rgb": { | |
"r": 0, | |
"g": 99, | |
"b": 134 | |
}, | |
"positionInBook": 197 | |
}, | |
{ | |
"code": "19-4301 TSX", | |
"name": "Blackout", | |
"rgb": { | |
"r": 39, | |
"g": 39, | |
"b": 43 | |
}, | |
"positionInBook": 198 | |
}, | |
{ | |
"code": "19-4304 TSX", | |
"name": "Flagstone", | |
"rgb": { | |
"r": 115, | |
"g": 122, | |
"b": 130 | |
}, | |
"positionInBook": 199 | |
}, | |
{ | |
"code": "19-4312 TSX", | |
"name": "Submerged", | |
"rgb": { | |
"r": 30, | |
"g": 77, | |
"b": 90 | |
}, | |
"positionInBook": 200 | |
}, | |
{ | |
"code": "19-5306 TSX", | |
"name": "Nephrite", | |
"rgb": { | |
"r": 69, | |
"g": 80, | |
"b": 81 | |
}, | |
"positionInBook": 201 | |
}, | |
{ | |
"code": "19-5410 TSX", | |
"name": "Melaleuca", | |
"rgb": { | |
"r": 51, | |
"g": 70, | |
"b": 63 | |
}, | |
"positionInBook": 202 | |
} | |
] | |
}, | |
{ | |
"id": "pantoneSolidCoatedV3M2", | |
"colors": [ | |
{ | |
"code": "Yellow 012 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 215, | |
"b": 0 | |
}, | |
"positionInBook": 0 | |
}, | |
{ | |
"code": "Bright Red C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 56, | |
"b": 34 | |
}, | |
"positionInBook": 1 | |
}, | |
{ | |
"code": "Pink C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 37, | |
"b": 152 | |
}, | |
"positionInBook": 2 | |
}, | |
{ | |
"code": "Medium Purple C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 0, | |
"b": 142 | |
}, | |
"positionInBook": 3 | |
}, | |
{ | |
"code": "Dark Blue C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 36, | |
"b": 156 | |
}, | |
"positionInBook": 4 | |
}, | |
{ | |
"code": "3514 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 183, | |
"b": 0 | |
}, | |
"positionInBook": 5 | |
}, | |
{ | |
"code": "3596 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 188, | |
"b": 139 | |
}, | |
"positionInBook": 6 | |
}, | |
{ | |
"code": "3547 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 144, | |
"b": 20 | |
}, | |
"positionInBook": 7 | |
}, | |
{ | |
"code": "3588 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 148, | |
"b": 37 | |
}, | |
"positionInBook": 8 | |
}, | |
{ | |
"code": "3564 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 106, | |
"b": 0 | |
}, | |
"positionInBook": 9 | |
}, | |
{ | |
"code": "2428 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 136, | |
"b": 45 | |
}, | |
"positionInBook": 10 | |
}, | |
{ | |
"code": "2429 C", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 94, | |
"b": 28 | |
}, | |
"positionInBook": 11 | |
}, | |
{ | |
"code": "2430 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 161, | |
"b": 121 | |
}, | |
"positionInBook": 12 | |
}, | |
{ | |
"code": "2431 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 147, | |
"b": 83 | |
}, | |
"positionInBook": 13 | |
}, | |
{ | |
"code": "2432 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 140, | |
"b": 89 | |
}, | |
"positionInBook": 14 | |
}, | |
{ | |
"code": "2433 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 123, | |
"b": 81 | |
}, | |
"positionInBook": 15 | |
}, | |
{ | |
"code": "2434 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 120, | |
"b": 94 | |
}, | |
"positionInBook": 16 | |
}, | |
{ | |
"code": "2435 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 112, | |
"b": 89 | |
}, | |
"positionInBook": 17 | |
}, | |
{ | |
"code": "2436 C", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 83, | |
"b": 62 | |
}, | |
"positionInBook": 18 | |
}, | |
{ | |
"code": "2437 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 191, | |
"b": 160 | |
}, | |
"positionInBook": 19 | |
}, | |
{ | |
"code": "2438 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 161, | |
"b": 132 | |
}, | |
"positionInBook": 20 | |
}, | |
{ | |
"code": "2439 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 134, | |
"b": 114 | |
}, | |
"positionInBook": 21 | |
}, | |
{ | |
"code": "2440 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 146, | |
"b": 137 | |
}, | |
"positionInBook": 22 | |
}, | |
{ | |
"code": "2441 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 111, | |
"b": 95 | |
}, | |
"positionInBook": 23 | |
}, | |
{ | |
"code": "2442 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 95, | |
"b": 84 | |
}, | |
"positionInBook": 24 | |
}, | |
{ | |
"code": "2443 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 58, | |
"b": 34 | |
}, | |
"positionInBook": 25 | |
}, | |
{ | |
"code": "3544 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 184, | |
"b": 167 | |
}, | |
"positionInBook": 26 | |
}, | |
{ | |
"code": "2444 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 166, | |
"b": 157 | |
}, | |
"positionInBook": 27 | |
}, | |
{ | |
"code": "3519 C", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 166, | |
"b": 173 | |
}, | |
"positionInBook": 28 | |
}, | |
{ | |
"code": "3572 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 157, | |
"b": 162 | |
}, | |
"positionInBook": 29 | |
}, | |
{ | |
"code": "2445 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 135, | |
"b": 141 | |
}, | |
"positionInBook": 30 | |
}, | |
{ | |
"code": "2446 C", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 133, | |
"b": 139 | |
}, | |
"positionInBook": 31 | |
}, | |
{ | |
"code": "2447 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 111, | |
"b": 118 | |
}, | |
"positionInBook": 32 | |
}, | |
{ | |
"code": "2448 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 98, | |
"b": 84 | |
}, | |
"positionInBook": 33 | |
}, | |
{ | |
"code": "3556 C", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 56, | |
"b": 49 | |
}, | |
"positionInBook": 34 | |
}, | |
{ | |
"code": "3516 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 53, | |
"b": 19 | |
}, | |
"positionInBook": 35 | |
}, | |
{ | |
"code": "3546 C", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 0, | |
"b": 26 | |
}, | |
"positionInBook": 36 | |
}, | |
{ | |
"code": "3517 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 0, | |
"b": 22 | |
}, | |
"positionInBook": 37 | |
}, | |
{ | |
"code": "3523 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 46, | |
"b": 52 | |
}, | |
"positionInBook": 38 | |
}, | |
{ | |
"code": "2449 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 36, | |
"b": 38 | |
}, | |
"positionInBook": 39 | |
}, | |
{ | |
"code": "3568 C", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 200, | |
"b": 217 | |
}, | |
"positionInBook": 40 | |
}, | |
{ | |
"code": "3595 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 188, | |
"b": 213 | |
}, | |
"positionInBook": 41 | |
}, | |
{ | |
"code": "2450 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 67, | |
"b": 136 | |
}, | |
"positionInBook": 42 | |
}, | |
{ | |
"code": "3527 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 65, | |
"b": 158 | |
}, | |
"positionInBook": 43 | |
}, | |
{ | |
"code": "3582 C", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 115, | |
"b": 166 | |
}, | |
"positionInBook": 44 | |
}, | |
{ | |
"code": "2451 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 66, | |
"b": 113 | |
}, | |
"positionInBook": 45 | |
}, | |
{ | |
"code": "2452 C", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 54, | |
"b": 111 | |
}, | |
"positionInBook": 46 | |
}, | |
{ | |
"code": "2453 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 150, | |
"b": 195 | |
}, | |
"positionInBook": 47 | |
}, | |
{ | |
"code": "3520 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 123, | |
"b": 196 | |
}, | |
"positionInBook": 48 | |
}, | |
{ | |
"code": "3559 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 81, | |
"b": 168 | |
}, | |
"positionInBook": 49 | |
}, | |
{ | |
"code": "3593 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 110, | |
"b": 182 | |
}, | |
"positionInBook": 50 | |
}, | |
{ | |
"code": "3575 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 114, | |
"b": 196 | |
}, | |
"positionInBook": 51 | |
}, | |
{ | |
"code": "3543 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 141, | |
"b": 209 | |
}, | |
"positionInBook": 52 | |
}, | |
{ | |
"code": "3515 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 0, | |
"b": 125 | |
}, | |
"positionInBook": 53 | |
}, | |
{ | |
"code": "3558 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 156, | |
"b": 212 | |
}, | |
"positionInBook": 54 | |
}, | |
{ | |
"code": "3555 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 33, | |
"b": 121 | |
}, | |
"positionInBook": 55 | |
}, | |
{ | |
"code": "3583 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 30, | |
"b": 132 | |
}, | |
"positionInBook": 56 | |
}, | |
{ | |
"code": "3574 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 69, | |
"b": 128 | |
}, | |
"positionInBook": 57 | |
}, | |
{ | |
"code": "3566 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 43, | |
"b": 116 | |
}, | |
"positionInBook": 58 | |
}, | |
{ | |
"code": "3535 C", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 1, | |
"b": 134 | |
}, | |
"positionInBook": 59 | |
}, | |
{ | |
"code": "3542 C", | |
"name": null, | |
"rgb": { | |
"r": 49, | |
"g": 19, | |
"b": 124 | |
}, | |
"positionInBook": 60 | |
}, | |
{ | |
"code": "3506 C", | |
"name": null, | |
"rgb": { | |
"r": 25, | |
"g": 97, | |
"b": 174 | |
}, | |
"positionInBook": 61 | |
}, | |
{ | |
"code": "3590 C", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 87, | |
"b": 161 | |
}, | |
"positionInBook": 62 | |
}, | |
{ | |
"code": "3584 C", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 62, | |
"b": 128 | |
}, | |
"positionInBook": 63 | |
}, | |
{ | |
"code": "3591 C", | |
"name": null, | |
"rgb": { | |
"r": 3, | |
"g": 37, | |
"b": 126 | |
}, | |
"positionInBook": 64 | |
}, | |
{ | |
"code": "3597 C", | |
"name": null, | |
"rgb": { | |
"r": 28, | |
"g": 55, | |
"b": 117 | |
}, | |
"positionInBook": 65 | |
}, | |
{ | |
"code": "3581 C", | |
"name": null, | |
"rgb": { | |
"r": 34, | |
"g": 50, | |
"b": 110 | |
}, | |
"positionInBook": 66 | |
}, | |
{ | |
"code": "3524 C", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 41, | |
"b": 81 | |
}, | |
"positionInBook": 67 | |
}, | |
{ | |
"code": "3577 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 186, | |
"b": 221 | |
}, | |
"positionInBook": 68 | |
}, | |
{ | |
"code": "3545 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 188, | |
"b": 225 | |
}, | |
"positionInBook": 69 | |
}, | |
{ | |
"code": "3551 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 166, | |
"b": 200 | |
}, | |
"positionInBook": 70 | |
}, | |
{ | |
"code": "3538 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 148, | |
"b": 213 | |
}, | |
"positionInBook": 71 | |
}, | |
{ | |
"code": "3553 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 110, | |
"b": 179 | |
}, | |
"positionInBook": 72 | |
}, | |
{ | |
"code": "2454 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 125, | |
"b": 161 | |
}, | |
"positionInBook": 73 | |
}, | |
{ | |
"code": "3526 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 147, | |
"b": 156 | |
}, | |
"positionInBook": 74 | |
}, | |
{ | |
"code": "2455 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 189, | |
"b": 180 | |
}, | |
"positionInBook": 75 | |
}, | |
{ | |
"code": "3533 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 219, | |
"b": 200 | |
}, | |
"positionInBook": 76 | |
}, | |
{ | |
"code": "3534 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 178, | |
"b": 162 | |
}, | |
"positionInBook": 77 | |
}, | |
{ | |
"code": "2456 C", | |
"name": null, | |
"rgb": { | |
"r": 49, | |
"g": 156, | |
"b": 138 | |
}, | |
"positionInBook": 78 | |
}, | |
{ | |
"code": "3560 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 164, | |
"b": 151 | |
}, | |
"positionInBook": 79 | |
}, | |
{ | |
"code": "3557 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 124, | |
"b": 128 | |
}, | |
"positionInBook": 80 | |
}, | |
{ | |
"code": "3541 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 147, | |
"b": 157 | |
}, | |
"positionInBook": 81 | |
}, | |
{ | |
"code": "2457 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 170, | |
"b": 153 | |
}, | |
"positionInBook": 82 | |
}, | |
{ | |
"code": "2458 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 152, | |
"b": 129 | |
}, | |
"positionInBook": 83 | |
}, | |
{ | |
"code": "2459 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 176, | |
"b": 147 | |
}, | |
"positionInBook": 84 | |
}, | |
{ | |
"code": "2460 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 175, | |
"b": 170 | |
}, | |
"positionInBook": 85 | |
}, | |
{ | |
"code": "2461 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 149, | |
"b": 145 | |
}, | |
"positionInBook": 86 | |
}, | |
{ | |
"code": "2462 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 141, | |
"b": 132 | |
}, | |
"positionInBook": 87 | |
}, | |
{ | |
"code": "2463 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 118, | |
"b": 113 | |
}, | |
"positionInBook": 88 | |
}, | |
{ | |
"code": "2464 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 190, | |
"b": 112 | |
}, | |
"positionInBook": 89 | |
}, | |
{ | |
"code": "2465 C", | |
"name": null, | |
"rgb": { | |
"r": 30, | |
"g": 111, | |
"b": 48 | |
}, | |
"positionInBook": 90 | |
}, | |
{ | |
"code": "3522 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 137, | |
"b": 47 | |
}, | |
"positionInBook": 91 | |
}, | |
{ | |
"code": "3536 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 55 | |
}, | |
"positionInBook": 92 | |
}, | |
{ | |
"code": "3500 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 110, | |
"b": 51 | |
}, | |
"positionInBook": 93 | |
}, | |
{ | |
"code": "3537 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 73, | |
"b": 30 | |
}, | |
"positionInBook": 94 | |
}, | |
{ | |
"code": "2466 C", | |
"name": null, | |
"rgb": { | |
"r": 42, | |
"g": 81, | |
"b": 77 | |
}, | |
"positionInBook": 95 | |
}, | |
{ | |
"code": "3570 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 214, | |
"b": 0 | |
}, | |
"positionInBook": 96 | |
}, | |
{ | |
"code": "3507 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 208, | |
"b": 0 | |
}, | |
"positionInBook": 97 | |
}, | |
{ | |
"code": "3561 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 195, | |
"b": 0 | |
}, | |
"positionInBook": 98 | |
}, | |
{ | |
"code": "3501 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 174, | |
"b": 4 | |
}, | |
"positionInBook": 99 | |
}, | |
{ | |
"code": "3529 C", | |
"name": null, | |
"rgb": { | |
"r": 31, | |
"g": 168, | |
"b": 36 | |
}, | |
"positionInBook": 100 | |
}, | |
{ | |
"code": "3539 C", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 154, | |
"b": 44 | |
}, | |
"positionInBook": 101 | |
}, | |
{ | |
"code": "3508 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 121, | |
"b": 48 | |
}, | |
"positionInBook": 102 | |
}, | |
{ | |
"code": "3599 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 194, | |
"b": 135 | |
}, | |
"positionInBook": 103 | |
}, | |
{ | |
"code": "2467 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 146, | |
"b": 108 | |
}, | |
"positionInBook": 104 | |
}, | |
{ | |
"code": "2468 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 106, | |
"b": 76 | |
}, | |
"positionInBook": 105 | |
}, | |
{ | |
"code": "2469 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 88, | |
"b": 59 | |
}, | |
"positionInBook": 106 | |
}, | |
{ | |
"code": "2470 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 127, | |
"b": 98 | |
}, | |
"positionInBook": 107 | |
}, | |
{ | |
"code": "2471 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 136, | |
"b": 119 | |
}, | |
"positionInBook": 108 | |
}, | |
{ | |
"code": "2472 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 64, | |
"b": 41 | |
}, | |
"positionInBook": 109 | |
}, | |
{ | |
"code": "2473 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 184, | |
"b": 189 | |
}, | |
"positionInBook": 110 | |
}, | |
{ | |
"code": "2474 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 161, | |
"b": 152 | |
}, | |
"positionInBook": 111 | |
}, | |
{ | |
"code": "2475 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 135, | |
"b": 127 | |
}, | |
"positionInBook": 112 | |
}, | |
{ | |
"code": "2476 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 107, | |
"b": 106 | |
}, | |
"positionInBook": 113 | |
}, | |
{ | |
"code": "2477 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 88, | |
"b": 84 | |
}, | |
"positionInBook": 114 | |
}, | |
{ | |
"code": "2478 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 54, | |
"b": 58 | |
}, | |
"positionInBook": 115 | |
}, | |
{ | |
"code": "2479 C", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 52, | |
"b": 47 | |
}, | |
"positionInBook": 116 | |
}, | |
{ | |
"code": "100 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 235, | |
"b": 97 | |
}, | |
"positionInBook": 117 | |
}, | |
{ | |
"code": "101 C", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 234, | |
"b": 72 | |
}, | |
"positionInBook": 118 | |
}, | |
{ | |
"code": "102 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 227, | |
"b": 0 | |
}, | |
"positionInBook": 119 | |
}, | |
{ | |
"code": "Yellow C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 221, | |
"b": 0 | |
}, | |
"positionInBook": 120 | |
}, | |
{ | |
"code": "103 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 169, | |
"b": 0 | |
}, | |
"positionInBook": 121 | |
}, | |
{ | |
"code": "104 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 152, | |
"b": 0 | |
}, | |
"positionInBook": 122 | |
}, | |
{ | |
"code": "105 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 122, | |
"b": 39 | |
}, | |
"positionInBook": 123 | |
}, | |
{ | |
"code": "7401 C", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 225, | |
"b": 164 | |
}, | |
"positionInBook": 124 | |
}, | |
{ | |
"code": "7402 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 216, | |
"b": 152 | |
}, | |
"positionInBook": 125 | |
}, | |
{ | |
"code": "7403 C", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 212, | |
"b": 132 | |
}, | |
"positionInBook": 126 | |
}, | |
{ | |
"code": "7404 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 218, | |
"b": 64 | |
}, | |
"positionInBook": 127 | |
}, | |
{ | |
"code": "7405 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 205, | |
"b": 0 | |
}, | |
"positionInBook": 128 | |
}, | |
{ | |
"code": "7406 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 196, | |
"b": 0 | |
}, | |
"positionInBook": 129 | |
}, | |
{ | |
"code": "7407 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 160, | |
"b": 82 | |
}, | |
"positionInBook": 130 | |
}, | |
{ | |
"code": "2001 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 229, | |
"b": 154 | |
}, | |
"positionInBook": 131 | |
}, | |
{ | |
"code": "2002 C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 226, | |
"b": 125 | |
}, | |
"positionInBook": 132 | |
}, | |
{ | |
"code": "2003 C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 226, | |
"b": 103 | |
}, | |
"positionInBook": 133 | |
}, | |
{ | |
"code": "2004 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 221, | |
"b": 122 | |
}, | |
"positionInBook": 134 | |
}, | |
{ | |
"code": "2005 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 216, | |
"b": 128 | |
}, | |
"positionInBook": 135 | |
}, | |
{ | |
"code": "2006 C", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 188, | |
"b": 78 | |
}, | |
"positionInBook": 136 | |
}, | |
{ | |
"code": "2007 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 165, | |
"b": 38 | |
}, | |
"positionInBook": 137 | |
}, | |
{ | |
"code": "106 C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 229, | |
"b": 71 | |
}, | |
"positionInBook": 138 | |
}, | |
{ | |
"code": "107 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 225, | |
"b": 34 | |
}, | |
"positionInBook": 139 | |
}, | |
{ | |
"code": "108 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 219, | |
"b": 0 | |
}, | |
"positionInBook": 140 | |
}, | |
{ | |
"code": "109 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 209, | |
"b": 0 | |
}, | |
"positionInBook": 141 | |
}, | |
{ | |
"code": "110 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 170, | |
"b": 0 | |
}, | |
"positionInBook": 142 | |
}, | |
{ | |
"code": "111 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 138, | |
"b": 0 | |
}, | |
"positionInBook": 143 | |
}, | |
{ | |
"code": "112 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 132, | |
"b": 18 | |
}, | |
"positionInBook": 144 | |
}, | |
{ | |
"code": "113 C", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 224, | |
"b": 83 | |
}, | |
"positionInBook": 145 | |
}, | |
{ | |
"code": "114 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 222, | |
"b": 64 | |
}, | |
"positionInBook": 146 | |
}, | |
{ | |
"code": "115 C", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 218, | |
"b": 37 | |
}, | |
"positionInBook": 147 | |
}, | |
{ | |
"code": "116 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 205, | |
"b": 0 | |
}, | |
"positionInBook": 148 | |
}, | |
{ | |
"code": "117 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 151, | |
"b": 0 | |
}, | |
"positionInBook": 149 | |
}, | |
{ | |
"code": "118 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 132, | |
"b": 0 | |
}, | |
"positionInBook": 150 | |
}, | |
{ | |
"code": "119 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 115, | |
"b": 34 | |
}, | |
"positionInBook": 151 | |
}, | |
{ | |
"code": "127 C", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 221, | |
"b": 109 | |
}, | |
"positionInBook": 152 | |
}, | |
{ | |
"code": "128 C", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 213, | |
"b": 78 | |
}, | |
"positionInBook": 153 | |
}, | |
{ | |
"code": "129 C", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 208, | |
"b": 62 | |
}, | |
"positionInBook": 154 | |
}, | |
{ | |
"code": "130 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 169, | |
"b": 0 | |
}, | |
"positionInBook": 155 | |
}, | |
{ | |
"code": "131 C", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 138, | |
"b": 0 | |
}, | |
"positionInBook": 156 | |
}, | |
{ | |
"code": "132 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 116, | |
"b": 0 | |
}, | |
"positionInBook": 157 | |
}, | |
{ | |
"code": "133 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 87, | |
"b": 27 | |
}, | |
"positionInBook": 158 | |
}, | |
{ | |
"code": "1205 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 224, | |
"b": 142 | |
}, | |
"positionInBook": 159 | |
}, | |
{ | |
"code": "1215 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 216, | |
"b": 114 | |
}, | |
"positionInBook": 160 | |
}, | |
{ | |
"code": "1225 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 200, | |
"b": 69 | |
}, | |
"positionInBook": 161 | |
}, | |
{ | |
"code": "1235 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 184, | |
"b": 28 | |
}, | |
"positionInBook": 162 | |
}, | |
{ | |
"code": "1245 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 146, | |
"b": 20 | |
}, | |
"positionInBook": 163 | |
}, | |
{ | |
"code": "1255 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 132, | |
"b": 31 | |
}, | |
"positionInBook": 164 | |
}, | |
{ | |
"code": "1265 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 107, | |
"b": 37 | |
}, | |
"positionInBook": 165 | |
}, | |
{ | |
"code": "120 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 219, | |
"b": 101 | |
}, | |
"positionInBook": 166 | |
}, | |
{ | |
"code": "121 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 215, | |
"b": 87 | |
}, | |
"positionInBook": 167 | |
}, | |
{ | |
"code": "122 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 209, | |
"b": 65 | |
}, | |
"positionInBook": 168 | |
}, | |
{ | |
"code": "123 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 199, | |
"b": 44 | |
}, | |
"positionInBook": 169 | |
}, | |
{ | |
"code": "124 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 170, | |
"b": 0 | |
}, | |
"positionInBook": 170 | |
}, | |
{ | |
"code": "125 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 133, | |
"b": 0 | |
}, | |
"positionInBook": 171 | |
}, | |
{ | |
"code": "126 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 118, | |
"b": 17 | |
}, | |
"positionInBook": 172 | |
}, | |
{ | |
"code": "7548 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 198, | |
"b": 0 | |
}, | |
"positionInBook": 173 | |
}, | |
{ | |
"code": "7549 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 182, | |
"b": 0 | |
}, | |
"positionInBook": 174 | |
}, | |
{ | |
"code": "7550 C", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 144, | |
"b": 0 | |
}, | |
"positionInBook": 175 | |
}, | |
{ | |
"code": "7551 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 126, | |
"b": 0 | |
}, | |
"positionInBook": 176 | |
}, | |
{ | |
"code": "7552 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 83, | |
"b": 29 | |
}, | |
"positionInBook": 177 | |
}, | |
{ | |
"code": "7553 C", | |
"name": null, | |
"rgb": { | |
"r": 90, | |
"g": 69, | |
"b": 34 | |
}, | |
"positionInBook": 178 | |
}, | |
{ | |
"code": "7554 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 61, | |
"b": 42 | |
}, | |
"positionInBook": 179 | |
}, | |
{ | |
"code": "7555 C", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 159, | |
"b": 19 | |
}, | |
"positionInBook": 180 | |
}, | |
{ | |
"code": "7556 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 139, | |
"b": 32 | |
}, | |
"positionInBook": 181 | |
}, | |
{ | |
"code": "7557 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 125, | |
"b": 35 | |
}, | |
"positionInBook": 182 | |
}, | |
{ | |
"code": "7558 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 113, | |
"b": 38 | |
}, | |
"positionInBook": 183 | |
}, | |
{ | |
"code": "7559 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 106, | |
"b": 42 | |
}, | |
"positionInBook": 184 | |
}, | |
{ | |
"code": "7560 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 98, | |
"b": 46 | |
}, | |
"positionInBook": 185 | |
}, | |
{ | |
"code": "7561 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 93, | |
"b": 52 | |
}, | |
"positionInBook": 186 | |
}, | |
{ | |
"code": "134 C", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 210, | |
"b": 110 | |
}, | |
"positionInBook": 187 | |
}, | |
{ | |
"code": "135 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 198, | |
"b": 88 | |
}, | |
"positionInBook": 188 | |
}, | |
{ | |
"code": "136 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 191, | |
"b": 63 | |
}, | |
"positionInBook": 189 | |
}, | |
{ | |
"code": "137 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 164, | |
"b": 0 | |
}, | |
"positionInBook": 190 | |
}, | |
{ | |
"code": "138 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 124, | |
"b": 0 | |
}, | |
"positionInBook": 191 | |
}, | |
{ | |
"code": "139 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 109, | |
"b": 4 | |
}, | |
"positionInBook": 192 | |
}, | |
{ | |
"code": "140 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 83, | |
"b": 28 | |
}, | |
"positionInBook": 193 | |
}, | |
{ | |
"code": "2008 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 192, | |
"b": 110 | |
}, | |
"positionInBook": 194 | |
}, | |
{ | |
"code": "2009 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 182, | |
"b": 97 | |
}, | |
"positionInBook": 195 | |
}, | |
{ | |
"code": "2010 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 173, | |
"b": 0 | |
}, | |
"positionInBook": 196 | |
}, | |
{ | |
"code": "2011 C", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 155, | |
"b": 51 | |
}, | |
"positionInBook": 197 | |
}, | |
{ | |
"code": "2012 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 150, | |
"b": 0 | |
}, | |
"positionInBook": 198 | |
}, | |
{ | |
"code": "2013 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 152, | |
"b": 0 | |
}, | |
"positionInBook": 199 | |
}, | |
{ | |
"code": "2014 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 112, | |
"b": 0 | |
}, | |
"positionInBook": 200 | |
}, | |
{ | |
"code": "1345 C", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 208, | |
"b": 134 | |
}, | |
"positionInBook": 201 | |
}, | |
{ | |
"code": "1355 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 197, | |
"b": 110 | |
}, | |
"positionInBook": 202 | |
}, | |
{ | |
"code": "1365 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 181, | |
"b": 73 | |
}, | |
"positionInBook": 203 | |
}, | |
{ | |
"code": "1375 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 158, | |
"b": 27 | |
}, | |
"positionInBook": 204 | |
}, | |
{ | |
"code": "1385 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 120, | |
"b": 0 | |
}, | |
"positionInBook": 205 | |
}, | |
{ | |
"code": "1395 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 96, | |
"b": 23 | |
}, | |
"positionInBook": 206 | |
}, | |
{ | |
"code": "1405 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 76, | |
"b": 30 | |
}, | |
"positionInBook": 207 | |
}, | |
{ | |
"code": "141 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 199, | |
"b": 92 | |
}, | |
"positionInBook": 208 | |
}, | |
{ | |
"code": "142 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 190, | |
"b": 72 | |
}, | |
"positionInBook": 209 | |
}, | |
{ | |
"code": "143 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 180, | |
"b": 52 | |
}, | |
"positionInBook": 210 | |
}, | |
{ | |
"code": "144 C", | |
"name": null, | |
"rgb": { | |
"r": 237, | |
"g": 139, | |
"b": 0 | |
}, | |
"positionInBook": 211 | |
}, | |
{ | |
"code": "145 C", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 127, | |
"b": 0 | |
}, | |
"positionInBook": 212 | |
}, | |
{ | |
"code": "146 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 109, | |
"b": 17 | |
}, | |
"positionInBook": 213 | |
}, | |
{ | |
"code": "147 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 92, | |
"b": 42 | |
}, | |
"positionInBook": 214 | |
}, | |
{ | |
"code": "7408 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 190, | |
"b": 0 | |
}, | |
"positionInBook": 215 | |
}, | |
{ | |
"code": "7409 C", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 179, | |
"b": 35 | |
}, | |
"positionInBook": 216 | |
}, | |
{ | |
"code": "7410 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 173, | |
"b": 119 | |
}, | |
"positionInBook": 217 | |
}, | |
{ | |
"code": "7411 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 166, | |
"b": 93 | |
}, | |
"positionInBook": 218 | |
}, | |
{ | |
"code": "7412 C", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 130, | |
"b": 53 | |
}, | |
"positionInBook": 219 | |
}, | |
{ | |
"code": "7413 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 134, | |
"b": 51 | |
}, | |
"positionInBook": 220 | |
}, | |
{ | |
"code": "7414 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 108, | |
"b": 24 | |
}, | |
"positionInBook": 221 | |
}, | |
{ | |
"code": "7562 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 155, | |
"b": 96 | |
}, | |
"positionInBook": 222 | |
}, | |
{ | |
"code": "7563 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 154, | |
"b": 45 | |
}, | |
"positionInBook": 223 | |
}, | |
{ | |
"code": "7564 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 138, | |
"b": 6 | |
}, | |
"positionInBook": 224 | |
}, | |
{ | |
"code": "7565 C", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 121, | |
"b": 37 | |
}, | |
"positionInBook": 225 | |
}, | |
{ | |
"code": "7566 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 100, | |
"b": 51 | |
}, | |
"positionInBook": 226 | |
}, | |
{ | |
"code": "7567 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 83, | |
"b": 47 | |
}, | |
"positionInBook": 227 | |
}, | |
{ | |
"code": "7568 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 81, | |
"b": 53 | |
}, | |
"positionInBook": 228 | |
}, | |
{ | |
"code": "7569 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 136, | |
"b": 37 | |
}, | |
"positionInBook": 229 | |
}, | |
{ | |
"code": "7570 C", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 131, | |
"b": 43 | |
}, | |
"positionInBook": 230 | |
}, | |
{ | |
"code": "7571 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 125, | |
"b": 48 | |
}, | |
"positionInBook": 231 | |
}, | |
{ | |
"code": "7572 C", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 114, | |
"b": 51 | |
}, | |
"positionInBook": 232 | |
}, | |
{ | |
"code": "7573 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 102, | |
"b": 43 | |
}, | |
"positionInBook": 233 | |
}, | |
{ | |
"code": "7574 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 106, | |
"b": 55 | |
}, | |
"positionInBook": 234 | |
}, | |
{ | |
"code": "7575 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 93, | |
"b": 50 | |
}, | |
"positionInBook": 235 | |
}, | |
{ | |
"code": "712 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 200, | |
"b": 155 | |
}, | |
"positionInBook": 236 | |
}, | |
{ | |
"code": "713 C", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 190, | |
"b": 135 | |
}, | |
"positionInBook": 237 | |
}, | |
{ | |
"code": "714 C", | |
"name": null, | |
"rgb": { | |
"r": 253, | |
"g": 170, | |
"b": 99 | |
}, | |
"positionInBook": 238 | |
}, | |
{ | |
"code": "715 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 141, | |
"b": 46 | |
}, | |
"positionInBook": 239 | |
}, | |
{ | |
"code": "716 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 118, | |
"b": 0 | |
}, | |
"positionInBook": 240 | |
}, | |
{ | |
"code": "717 C", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 93, | |
"b": 0 | |
}, | |
"positionInBook": 241 | |
}, | |
{ | |
"code": "718 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 77, | |
"b": 0 | |
}, | |
"positionInBook": 242 | |
}, | |
{ | |
"code": "2015 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 207, | |
"b": 169 | |
}, | |
"positionInBook": 243 | |
}, | |
{ | |
"code": "2016 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 182, | |
"b": 115 | |
}, | |
"positionInBook": 244 | |
}, | |
{ | |
"code": "2017 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 173, | |
"b": 109 | |
}, | |
"positionInBook": 245 | |
}, | |
{ | |
"code": "2018 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 117, | |
"b": 0 | |
}, | |
"positionInBook": 246 | |
}, | |
{ | |
"code": "2019 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 107, | |
"b": 0 | |
}, | |
"positionInBook": 247 | |
}, | |
{ | |
"code": "2020 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 84, | |
"b": 0 | |
}, | |
"positionInBook": 248 | |
}, | |
{ | |
"code": "2021 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 72, | |
"b": 21 | |
}, | |
"positionInBook": 249 | |
}, | |
{ | |
"code": "148 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 203, | |
"b": 139 | |
}, | |
"positionInBook": 250 | |
}, | |
{ | |
"code": "149 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 194, | |
"b": 123 | |
}, | |
"positionInBook": 251 | |
}, | |
{ | |
"code": "150 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 178, | |
"b": 91 | |
}, | |
"positionInBook": 252 | |
}, | |
{ | |
"code": "151 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 130, | |
"b": 0 | |
}, | |
"positionInBook": 253 | |
}, | |
{ | |
"code": "152 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 114, | |
"b": 0 | |
}, | |
"positionInBook": 254 | |
}, | |
{ | |
"code": "153 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 106, | |
"b": 20 | |
}, | |
"positionInBook": 255 | |
}, | |
{ | |
"code": "154 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 90, | |
"b": 26 | |
}, | |
"positionInBook": 256 | |
}, | |
{ | |
"code": "155 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 209, | |
"b": 159 | |
}, | |
"positionInBook": 257 | |
}, | |
{ | |
"code": "156 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 190, | |
"b": 125 | |
}, | |
"positionInBook": 258 | |
}, | |
{ | |
"code": "157 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 161, | |
"b": 84 | |
}, | |
"positionInBook": 259 | |
}, | |
{ | |
"code": "158 C", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 119, | |
"b": 34 | |
}, | |
"positionInBook": 260 | |
}, | |
{ | |
"code": "159 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 96, | |
"b": 21 | |
}, | |
"positionInBook": 261 | |
}, | |
{ | |
"code": "160 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 86, | |
"b": 28 | |
}, | |
"positionInBook": 262 | |
}, | |
{ | |
"code": "161 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 61, | |
"b": 32 | |
}, | |
"positionInBook": 263 | |
}, | |
{ | |
"code": "1485 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 174, | |
"b": 98 | |
}, | |
"positionInBook": 264 | |
}, | |
{ | |
"code": "1495 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 143, | |
"b": 28 | |
}, | |
"positionInBook": 265 | |
}, | |
{ | |
"code": "1505 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 105, | |
"b": 0 | |
}, | |
"positionInBook": 266 | |
}, | |
{ | |
"code": "Orange 021 C", | |
"name": null, | |
"rgb": { | |
"r": 254, | |
"g": 80, | |
"b": 0 | |
}, | |
"positionInBook": 267 | |
}, | |
{ | |
"code": "1525 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 71, | |
"b": 0 | |
}, | |
"positionInBook": 268 | |
}, | |
{ | |
"code": "1535 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 69, | |
"b": 11 | |
}, | |
"positionInBook": 269 | |
}, | |
{ | |
"code": "1545 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 56, | |
"b": 24 | |
}, | |
"positionInBook": 270 | |
}, | |
{ | |
"code": "1555 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 185, | |
"b": 144 | |
}, | |
"positionInBook": 271 | |
}, | |
{ | |
"code": "1565 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 160, | |
"b": 106 | |
}, | |
"positionInBook": 272 | |
}, | |
{ | |
"code": "1575 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 127, | |
"b": 50 | |
}, | |
"positionInBook": 273 | |
}, | |
{ | |
"code": "1585 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 106, | |
"b": 20 | |
}, | |
"positionInBook": 274 | |
}, | |
{ | |
"code": "1595 C", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 96, | |
"b": 24 | |
}, | |
"positionInBook": 275 | |
}, | |
{ | |
"code": "1605 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 85, | |
"b": 35 | |
}, | |
"positionInBook": 276 | |
}, | |
{ | |
"code": "1615 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 71, | |
"b": 32 | |
}, | |
"positionInBook": 277 | |
}, | |
{ | |
"code": "2022 C", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 170, | |
"b": 141 | |
}, | |
"positionInBook": 278 | |
}, | |
{ | |
"code": "2023 C", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 147, | |
"b": 112 | |
}, | |
"positionInBook": 279 | |
}, | |
{ | |
"code": "2024 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 124, | |
"b": 86 | |
}, | |
"positionInBook": 280 | |
}, | |
{ | |
"code": "2025 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 138, | |
"b": 61 | |
}, | |
"positionInBook": 281 | |
}, | |
{ | |
"code": "2026 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 99, | |
"b": 58 | |
}, | |
"positionInBook": 282 | |
}, | |
{ | |
"code": "2027 C", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 83, | |
"b": 64 | |
}, | |
"positionInBook": 283 | |
}, | |
{ | |
"code": "2028 C", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 51, | |
"b": 0 | |
}, | |
"positionInBook": 284 | |
}, | |
{ | |
"code": "162 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 190, | |
"b": 159 | |
}, | |
"positionInBook": 285 | |
}, | |
{ | |
"code": "163 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 157, | |
"b": 110 | |
}, | |
"positionInBook": 286 | |
}, | |
{ | |
"code": "164 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 127, | |
"b": 65 | |
}, | |
"positionInBook": 287 | |
}, | |
{ | |
"code": "165 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 103, | |
"b": 32 | |
}, | |
"positionInBook": 288 | |
}, | |
{ | |
"code": "166 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 82, | |
"b": 5 | |
}, | |
"positionInBook": 289 | |
}, | |
{ | |
"code": "167 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 83, | |
"b": 28 | |
}, | |
"positionInBook": 290 | |
}, | |
{ | |
"code": "168 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 57, | |
"b": 29 | |
}, | |
"positionInBook": 291 | |
}, | |
{ | |
"code": "7576 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 134, | |
"b": 78 | |
}, | |
"positionInBook": 292 | |
}, | |
{ | |
"code": "7577 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 126, | |
"b": 60 | |
}, | |
"positionInBook": 293 | |
}, | |
{ | |
"code": "7578 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 107, | |
"b": 48 | |
}, | |
"positionInBook": 294 | |
}, | |
{ | |
"code": "7579 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 88, | |
"b": 42 | |
}, | |
"positionInBook": 295 | |
}, | |
{ | |
"code": "7580 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 81, | |
"b": 49 | |
}, | |
"positionInBook": 296 | |
}, | |
{ | |
"code": "7581 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 74, | |
"b": 51 | |
}, | |
"positionInBook": 297 | |
}, | |
{ | |
"code": "7582 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 71, | |
"b": 54 | |
}, | |
"positionInBook": 298 | |
}, | |
{ | |
"code": "1625 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 163, | |
"b": 139 | |
}, | |
"positionInBook": 299 | |
}, | |
{ | |
"code": "1635 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 141, | |
"b": 109 | |
}, | |
"positionInBook": 300 | |
}, | |
{ | |
"code": "1645 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 106, | |
"b": 57 | |
}, | |
"positionInBook": 301 | |
}, | |
{ | |
"code": "1655 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 76, | |
"b": 2 | |
}, | |
"positionInBook": 302 | |
}, | |
{ | |
"code": "1665 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 68, | |
"b": 5 | |
}, | |
"positionInBook": 303 | |
}, | |
{ | |
"code": "1675 C", | |
"name": null, | |
"rgb": { | |
"r": 169, | |
"g": 67, | |
"b": 30 | |
}, | |
"positionInBook": 304 | |
}, | |
{ | |
"code": "1685 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 57, | |
"b": 33 | |
}, | |
"positionInBook": 305 | |
}, | |
{ | |
"code": "169 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 179, | |
"b": 171 | |
}, | |
"positionInBook": 306 | |
}, | |
{ | |
"code": "170 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 134, | |
"b": 116 | |
}, | |
"positionInBook": 307 | |
}, | |
{ | |
"code": "171 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 92, | |
"b": 57 | |
}, | |
"positionInBook": 308 | |
}, | |
{ | |
"code": "172 C", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 70, | |
"b": 22 | |
}, | |
"positionInBook": 309 | |
}, | |
{ | |
"code": "173 C", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 69, | |
"b": 32 | |
}, | |
"positionInBook": 310 | |
}, | |
{ | |
"code": "174 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 56, | |
"b": 33 | |
}, | |
"positionInBook": 311 | |
}, | |
{ | |
"code": "175 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 53, | |
"b": 41 | |
}, | |
"positionInBook": 312 | |
}, | |
{ | |
"code": "7583 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 98, | |
"b": 45 | |
}, | |
"positionInBook": 313 | |
}, | |
{ | |
"code": "7584 C", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 88, | |
"b": 38 | |
}, | |
"positionInBook": 314 | |
}, | |
{ | |
"code": "7585 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 92, | |
"b": 55 | |
}, | |
"positionInBook": 315 | |
}, | |
{ | |
"code": "7586 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 83, | |
"b": 48 | |
}, | |
"positionInBook": 316 | |
}, | |
{ | |
"code": "7587 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 76, | |
"b": 46 | |
}, | |
"positionInBook": 317 | |
}, | |
{ | |
"code": "7588 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 77, | |
"b": 53 | |
}, | |
"positionInBook": 318 | |
}, | |
{ | |
"code": "7589 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 71, | |
"b": 56 | |
}, | |
"positionInBook": 319 | |
}, | |
{ | |
"code": "7590 C", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 181, | |
"b": 158 | |
}, | |
"positionInBook": 320 | |
}, | |
{ | |
"code": "7591 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 125, | |
"b": 89 | |
}, | |
"positionInBook": 321 | |
}, | |
{ | |
"code": "7592 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 85, | |
"b": 51 | |
}, | |
"positionInBook": 322 | |
}, | |
{ | |
"code": "7593 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 67, | |
"b": 44 | |
}, | |
"positionInBook": 323 | |
}, | |
{ | |
"code": "7594 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 58, | |
"b": 45 | |
}, | |
"positionInBook": 324 | |
}, | |
{ | |
"code": "7595 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 61, | |
"b": 46 | |
}, | |
"positionInBook": 325 | |
}, | |
{ | |
"code": "7596 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 61, | |
"b": 49 | |
}, | |
"positionInBook": 326 | |
}, | |
{ | |
"code": "7597 C", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 65, | |
"b": 36 | |
}, | |
"positionInBook": 327 | |
}, | |
{ | |
"code": "7598 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 71, | |
"b": 42 | |
}, | |
"positionInBook": 328 | |
}, | |
{ | |
"code": "7599 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 61, | |
"b": 38 | |
}, | |
"positionInBook": 329 | |
}, | |
{ | |
"code": "7600 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 63, | |
"b": 43 | |
}, | |
"positionInBook": 330 | |
}, | |
{ | |
"code": "7601 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 65, | |
"b": 44 | |
}, | |
"positionInBook": 331 | |
}, | |
{ | |
"code": "7602 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 73, | |
"b": 49 | |
}, | |
"positionInBook": 332 | |
}, | |
{ | |
"code": "7603 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 66, | |
"b": 48 | |
}, | |
"positionInBook": 333 | |
}, | |
{ | |
"code": "7604 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 213, | |
"b": 211 | |
}, | |
"positionInBook": 334 | |
}, | |
{ | |
"code": "7605 C", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 187, | |
"b": 180 | |
}, | |
"positionInBook": 335 | |
}, | |
{ | |
"code": "7606 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 147, | |
"b": 138 | |
}, | |
"positionInBook": 336 | |
}, | |
{ | |
"code": "7607 C", | |
"name": null, | |
"rgb": { | |
"r": 194, | |
"g": 110, | |
"b": 96 | |
}, | |
"positionInBook": 337 | |
}, | |
{ | |
"code": "7608 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 73, | |
"b": 61 | |
}, | |
"positionInBook": 338 | |
}, | |
{ | |
"code": "7609 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 59, | |
"b": 52 | |
}, | |
"positionInBook": 339 | |
}, | |
{ | |
"code": "7610 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 52, | |
"b": 49 | |
}, | |
"positionInBook": 340 | |
}, | |
{ | |
"code": "2337 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 193, | |
"b": 184 | |
}, | |
"positionInBook": 341 | |
}, | |
{ | |
"code": "2338 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 163, | |
"b": 156 | |
}, | |
"positionInBook": 342 | |
}, | |
{ | |
"code": "2339 C", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 148, | |
"b": 145 | |
}, | |
"positionInBook": 343 | |
}, | |
{ | |
"code": "2340 C", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 111, | |
"b": 119 | |
}, | |
"positionInBook": 344 | |
}, | |
{ | |
"code": "2341 C", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 108, | |
"b": 109 | |
}, | |
"positionInBook": 345 | |
}, | |
{ | |
"code": "2342 C", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 90, | |
"b": 101 | |
}, | |
"positionInBook": 346 | |
}, | |
{ | |
"code": "2343 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 85, | |
"b": 102 | |
}, | |
"positionInBook": 347 | |
}, | |
{ | |
"code": "7611 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 188, | |
"b": 176 | |
}, | |
"positionInBook": 348 | |
}, | |
{ | |
"code": "7612 C", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 154, | |
"b": 142 | |
}, | |
"positionInBook": 349 | |
}, | |
{ | |
"code": "7613 C", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 138, | |
"b": 126 | |
}, | |
"positionInBook": 350 | |
}, | |
{ | |
"code": "7614 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 127, | |
"b": 116 | |
}, | |
"positionInBook": 351 | |
}, | |
{ | |
"code": "7615 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 103, | |
"b": 97 | |
}, | |
"positionInBook": 352 | |
}, | |
{ | |
"code": "7616 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 76, | |
"b": 76 | |
}, | |
"positionInBook": 353 | |
}, | |
{ | |
"code": "7617 C", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 61, | |
"b": 62 | |
}, | |
"positionInBook": 354 | |
}, | |
{ | |
"code": "7520 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 190, | |
"b": 176 | |
}, | |
"positionInBook": 355 | |
}, | |
{ | |
"code": "7521 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 156, | |
"b": 131 | |
}, | |
"positionInBook": 356 | |
}, | |
{ | |
"code": "7522 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 106, | |
"b": 85 | |
}, | |
"positionInBook": 357 | |
}, | |
{ | |
"code": "7523 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 92, | |
"b": 87 | |
}, | |
"positionInBook": 358 | |
}, | |
{ | |
"code": "7524 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 82, | |
"b": 72 | |
}, | |
"positionInBook": 359 | |
}, | |
{ | |
"code": "7525 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 106, | |
"b": 79 | |
}, | |
"positionInBook": 360 | |
}, | |
{ | |
"code": "7526 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 57, | |
"b": 27 | |
}, | |
"positionInBook": 361 | |
}, | |
{ | |
"code": "489 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 195, | |
"b": 178 | |
}, | |
"positionInBook": 362 | |
}, | |
{ | |
"code": "488 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 186, | |
"b": 168 | |
}, | |
"positionInBook": 363 | |
}, | |
{ | |
"code": "487 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 167, | |
"b": 148 | |
}, | |
"positionInBook": 364 | |
}, | |
{ | |
"code": "486 C", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 146, | |
"b": 124 | |
}, | |
"positionInBook": 365 | |
}, | |
{ | |
"code": "485 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 41, | |
"b": 28 | |
}, | |
"positionInBook": 366 | |
}, | |
{ | |
"code": "484 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 51, | |
"b": 36 | |
}, | |
"positionInBook": 367 | |
}, | |
{ | |
"code": "483 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 48, | |
"b": 36 | |
}, | |
"positionInBook": 368 | |
}, | |
{ | |
"code": "2029 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 130, | |
"b": 127 | |
}, | |
"positionInBook": 369 | |
}, | |
{ | |
"code": "2030 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 121, | |
"b": 117 | |
}, | |
"positionInBook": 370 | |
}, | |
{ | |
"code": "2031 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 105, | |
"b": 101 | |
}, | |
"positionInBook": 371 | |
}, | |
{ | |
"code": "2032 C", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 90, | |
"b": 87 | |
}, | |
"positionInBook": 372 | |
}, | |
{ | |
"code": "2033 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 70, | |
"b": 68 | |
}, | |
"positionInBook": 373 | |
}, | |
{ | |
"code": "2034 C", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 60, | |
"b": 62 | |
}, | |
"positionInBook": 374 | |
}, | |
{ | |
"code": "2035 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 0, | |
"b": 28 | |
}, | |
"positionInBook": 375 | |
}, | |
{ | |
"code": "2344 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 128, | |
"b": 112 | |
}, | |
"positionInBook": 376 | |
}, | |
{ | |
"code": "2345 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 109, | |
"b": 106 | |
}, | |
"positionInBook": 377 | |
}, | |
{ | |
"code": "2346 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 88, | |
"b": 105 | |
}, | |
"positionInBook": 378 | |
}, | |
{ | |
"code": "2347 C", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 6, | |
"b": 0 | |
}, | |
"positionInBook": 379 | |
}, | |
{ | |
"code": "2348 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 85, | |
"b": 79 | |
}, | |
"positionInBook": 380 | |
}, | |
{ | |
"code": "2349 C", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 54, | |
"b": 4 | |
}, | |
"positionInBook": 381 | |
}, | |
{ | |
"code": "2350 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 35, | |
"b": 28 | |
}, | |
"positionInBook": 382 | |
}, | |
{ | |
"code": "176 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 177, | |
"b": 187 | |
}, | |
"positionInBook": 383 | |
}, | |
{ | |
"code": "177 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 128, | |
"b": 139 | |
}, | |
"positionInBook": 384 | |
}, | |
{ | |
"code": "178 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 88, | |
"b": 93 | |
}, | |
"positionInBook": 385 | |
}, | |
{ | |
"code": "Warm Red C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 66, | |
"b": 58 | |
}, | |
"positionInBook": 386 | |
}, | |
{ | |
"code": "179 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 60, | |
"b": 49 | |
}, | |
"positionInBook": 387 | |
}, | |
{ | |
"code": "180 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 58, | |
"b": 52 | |
}, | |
"positionInBook": 388 | |
}, | |
{ | |
"code": "181 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 49, | |
"b": 47 | |
}, | |
"positionInBook": 389 | |
}, | |
{ | |
"code": "1765 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 163, | |
"b": 181 | |
}, | |
"positionInBook": 390 | |
}, | |
{ | |
"code": "1775 C", | |
"name": null, | |
"rgb": { | |
"r": 255, | |
"g": 141, | |
"b": 161 | |
}, | |
"positionInBook": 391 | |
}, | |
{ | |
"code": "1785 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 72, | |
"b": 94 | |
}, | |
"positionInBook": 392 | |
}, | |
{ | |
"code": "1788 C", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 39, | |
"b": 55 | |
}, | |
"positionInBook": 393 | |
}, | |
{ | |
"code": "1795 C", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 39, | |
"b": 48 | |
}, | |
"positionInBook": 394 | |
}, | |
{ | |
"code": "1805 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 39, | |
"b": 47 | |
}, | |
"positionInBook": 395 | |
}, | |
{ | |
"code": "1815 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 38, | |
"b": 41 | |
}, | |
"positionInBook": 396 | |
}, | |
{ | |
"code": "1767 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 175, | |
"b": 192 | |
}, | |
"positionInBook": 397 | |
}, | |
{ | |
"code": "1777 C", | |
"name": null, | |
"rgb": { | |
"r": 251, | |
"g": 99, | |
"b": 126 | |
}, | |
"positionInBook": 398 | |
}, | |
{ | |
"code": "1787 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 54, | |
"b": 76 | |
}, | |
"positionInBook": 399 | |
}, | |
{ | |
"code": "Red 032 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 51, | |
"b": 64 | |
}, | |
"positionInBook": 400 | |
}, | |
{ | |
"code": "1797 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 51, | |
"b": 59 | |
}, | |
"positionInBook": 401 | |
}, | |
{ | |
"code": "1807 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 52, | |
"b": 58 | |
}, | |
"positionInBook": 402 | |
}, | |
{ | |
"code": "1817 C", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 51, | |
"b": 53 | |
}, | |
"positionInBook": 403 | |
}, | |
{ | |
"code": "7618 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 110, | |
"b": 78 | |
}, | |
"positionInBook": 404 | |
}, | |
{ | |
"code": "7619 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 76, | |
"b": 54 | |
}, | |
"positionInBook": 405 | |
}, | |
{ | |
"code": "7620 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 49, | |
"b": 44 | |
}, | |
"positionInBook": 406 | |
}, | |
{ | |
"code": "7621 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 35, | |
"b": 40 | |
}, | |
"positionInBook": 407 | |
}, | |
{ | |
"code": "7622 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 40, | |
"b": 44 | |
}, | |
"positionInBook": 408 | |
}, | |
{ | |
"code": "7623 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 43, | |
"b": 43 | |
}, | |
"positionInBook": 409 | |
}, | |
{ | |
"code": "7624 C", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 47, | |
"b": 45 | |
}, | |
"positionInBook": 410 | |
}, | |
{ | |
"code": "7625 C", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 82, | |
"b": 62 | |
}, | |
"positionInBook": 411 | |
}, | |
{ | |
"code": "7626 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 53, | |
"b": 39 | |
}, | |
"positionInBook": 412 | |
}, | |
{ | |
"code": "7627 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 43, | |
"b": 42 | |
}, | |
"positionInBook": 413 | |
}, | |
{ | |
"code": "7628 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 42, | |
"b": 43 | |
}, | |
"positionInBook": 414 | |
}, | |
{ | |
"code": "7629 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 51, | |
"b": 50 | |
}, | |
"positionInBook": 415 | |
}, | |
{ | |
"code": "7630 C", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 50, | |
"b": 49 | |
}, | |
"positionInBook": 416 | |
}, | |
{ | |
"code": "7631 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 45, | |
"b": 45 | |
}, | |
"positionInBook": 417 | |
}, | |
{ | |
"code": "7415 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 186, | |
"b": 168 | |
}, | |
"positionInBook": 418 | |
}, | |
{ | |
"code": "7416 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 106, | |
"b": 84 | |
}, | |
"positionInBook": 419 | |
}, | |
{ | |
"code": "7417 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 79, | |
"b": 57 | |
}, | |
"positionInBook": 420 | |
}, | |
{ | |
"code": "7418 C", | |
"name": null, | |
"rgb": { | |
"r": 205, | |
"g": 84, | |
"b": 91 | |
}, | |
"positionInBook": 421 | |
}, | |
{ | |
"code": "7419 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 74, | |
"b": 90 | |
}, | |
"positionInBook": 422 | |
}, | |
{ | |
"code": "7420 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 34, | |
"b": 66 | |
}, | |
"positionInBook": 423 | |
}, | |
{ | |
"code": "7421 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 28, | |
"b": 50 | |
}, | |
"positionInBook": 424 | |
}, | |
{ | |
"code": "182 C", | |
"name": null, | |
"rgb": { | |
"r": 250, | |
"g": 187, | |
"b": 203 | |
}, | |
"positionInBook": 425 | |
}, | |
{ | |
"code": "183 C", | |
"name": null, | |
"rgb": { | |
"r": 252, | |
"g": 155, | |
"b": 179 | |
}, | |
"positionInBook": 426 | |
}, | |
{ | |
"code": "184 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 82, | |
"b": 117 | |
}, | |
"positionInBook": 427 | |
}, | |
{ | |
"code": "185 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 0, | |
"b": 43 | |
}, | |
"positionInBook": 428 | |
}, | |
{ | |
"code": "186 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 16, | |
"b": 46 | |
}, | |
"positionInBook": 429 | |
}, | |
{ | |
"code": "187 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 25, | |
"b": 46 | |
}, | |
"positionInBook": 430 | |
}, | |
{ | |
"code": "188 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 35, | |
"b": 47 | |
}, | |
"positionInBook": 431 | |
}, | |
{ | |
"code": "196 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 199, | |
"b": 205 | |
}, | |
"positionInBook": 432 | |
}, | |
{ | |
"code": "197 C", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 156, | |
"b": 174 | |
}, | |
"positionInBook": 433 | |
}, | |
{ | |
"code": "198 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 70, | |
"b": 97 | |
}, | |
"positionInBook": 434 | |
}, | |
{ | |
"code": "199 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 0, | |
"b": 50 | |
}, | |
"positionInBook": 435 | |
}, | |
{ | |
"code": "200 C", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 12, | |
"b": 47 | |
}, | |
"positionInBook": 436 | |
}, | |
{ | |
"code": "201 C", | |
"name": null, | |
"rgb": { | |
"r": 157, | |
"g": 34, | |
"b": 53 | |
}, | |
"positionInBook": 437 | |
}, | |
{ | |
"code": "202 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 38, | |
"b": 51 | |
}, | |
"positionInBook": 438 | |
}, | |
{ | |
"code": "189 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 163, | |
"b": 188 | |
}, | |
"positionInBook": 439 | |
}, | |
{ | |
"code": "190 C", | |
"name": null, | |
"rgb": { | |
"r": 246, | |
"g": 117, | |
"b": 153 | |
}, | |
"positionInBook": 440 | |
}, | |
{ | |
"code": "191 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 66, | |
"b": 111 | |
}, | |
"positionInBook": 441 | |
}, | |
{ | |
"code": "192 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 0, | |
"b": 70 | |
}, | |
"positionInBook": 442 | |
}, | |
{ | |
"code": "193 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 13, | |
"b": 62 | |
}, | |
"positionInBook": 443 | |
}, | |
{ | |
"code": "194 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 39, | |
"b": 67 | |
}, | |
"positionInBook": 444 | |
}, | |
{ | |
"code": "195 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 47, | |
"b": 64 | |
}, | |
"positionInBook": 445 | |
}, | |
{ | |
"code": "1895 C", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 182, | |
"b": 205 | |
}, | |
"positionInBook": 446 | |
}, | |
{ | |
"code": "1905 C", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 155, | |
"b": 187 | |
}, | |
"positionInBook": 447 | |
}, | |
{ | |
"code": "1915 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 75, | |
"b": 129 | |
}, | |
"positionInBook": 448 | |
}, | |
{ | |
"code": "1925 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 0, | |
"b": 77 | |
}, | |
"positionInBook": 449 | |
}, | |
{ | |
"code": "1935 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 0, | |
"b": 62 | |
}, | |
"positionInBook": 450 | |
}, | |
{ | |
"code": "1945 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 10, | |
"b": 61 | |
}, | |
"positionInBook": 451 | |
}, | |
{ | |
"code": "1955 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 21, | |
"b": 56 | |
}, | |
"positionInBook": 452 | |
}, | |
{ | |
"code": "705 C", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 218, | |
"b": 223 | |
}, | |
"positionInBook": 453 | |
}, | |
{ | |
"code": "706 C", | |
"name": null, | |
"rgb": { | |
"r": 247, | |
"g": 206, | |
"b": 215 | |
}, | |
"positionInBook": 454 | |
}, | |
{ | |
"code": "707 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 181, | |
"b": 196 | |
}, | |
"positionInBook": 455 | |
}, | |
{ | |
"code": "708 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 145, | |
"b": 165 | |
}, | |
"positionInBook": 456 | |
}, | |
{ | |
"code": "709 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 96, | |
"b": 121 | |
}, | |
"positionInBook": 457 | |
}, | |
{ | |
"code": "710 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 62, | |
"b": 82 | |
}, | |
"positionInBook": 458 | |
}, | |
{ | |
"code": "711 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 44, | |
"b": 48 | |
}, | |
"positionInBook": 459 | |
}, | |
{ | |
"code": "698 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 212, | |
"b": 215 | |
}, | |
"positionInBook": 460 | |
}, | |
{ | |
"code": "699 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 195, | |
"b": 204 | |
}, | |
"positionInBook": 461 | |
}, | |
{ | |
"code": "700 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 172, | |
"b": 185 | |
}, | |
"positionInBook": 462 | |
}, | |
{ | |
"code": "701 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 134, | |
"b": 153 | |
}, | |
"positionInBook": 463 | |
}, | |
{ | |
"code": "702 C", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 91, | |
"b": 115 | |
}, | |
"positionInBook": 464 | |
}, | |
{ | |
"code": "703 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 58, | |
"b": 75 | |
}, | |
"positionInBook": 465 | |
}, | |
{ | |
"code": "704 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 43, | |
"b": 47 | |
}, | |
"positionInBook": 466 | |
}, | |
{ | |
"code": "203 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 179, | |
"b": 203 | |
}, | |
"positionInBook": 467 | |
}, | |
{ | |
"code": "204 C", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 130, | |
"b": 169 | |
}, | |
"positionInBook": 468 | |
}, | |
{ | |
"code": "205 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 69, | |
"b": 123 | |
}, | |
"positionInBook": 469 | |
}, | |
{ | |
"code": "206 C", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 0, | |
"b": 55 | |
}, | |
"positionInBook": 470 | |
}, | |
{ | |
"code": "207 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 0, | |
"b": 52 | |
}, | |
"positionInBook": 471 | |
}, | |
{ | |
"code": "208 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 32, | |
"b": 65 | |
}, | |
"positionInBook": 472 | |
}, | |
{ | |
"code": "209 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 38, | |
"b": 61 | |
}, | |
"positionInBook": 473 | |
}, | |
{ | |
"code": "210 C", | |
"name": null, | |
"rgb": { | |
"r": 249, | |
"g": 159, | |
"b": 201 | |
}, | |
"positionInBook": 474 | |
}, | |
{ | |
"code": "211 C", | |
"name": null, | |
"rgb": { | |
"r": 245, | |
"g": 126, | |
"b": 182 | |
}, | |
"positionInBook": 475 | |
}, | |
{ | |
"code": "212 C", | |
"name": null, | |
"rgb": { | |
"r": 240, | |
"g": 78, | |
"b": 152 | |
}, | |
"positionInBook": 476 | |
}, | |
{ | |
"code": "213 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 28, | |
"b": 121 | |
}, | |
"positionInBook": 477 | |
}, | |
{ | |
"code": "214 C", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 15, | |
"b": 105 | |
}, | |
"positionInBook": 478 | |
}, | |
{ | |
"code": "215 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 20, | |
"b": 90 | |
}, | |
"positionInBook": 479 | |
}, | |
{ | |
"code": "216 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 34, | |
"b": 72 | |
}, | |
"positionInBook": 480 | |
}, | |
{ | |
"code": "2036 C", | |
"name": null, | |
"rgb": { | |
"r": 248, | |
"g": 190, | |
"b": 214 | |
}, | |
"positionInBook": 481 | |
}, | |
{ | |
"code": "2037 C", | |
"name": null, | |
"rgb": { | |
"r": 243, | |
"g": 149, | |
"b": 199 | |
}, | |
"positionInBook": 482 | |
}, | |
{ | |
"code": "2038 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 96, | |
"b": 163 | |
}, | |
"positionInBook": 483 | |
}, | |
{ | |
"code": "2039 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 56, | |
"b": 136 | |
}, | |
"positionInBook": 484 | |
}, | |
{ | |
"code": "2040 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 11, | |
"b": 91 | |
}, | |
"positionInBook": 485 | |
}, | |
{ | |
"code": "2041 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 34, | |
"b": 78 | |
}, | |
"positionInBook": 486 | |
}, | |
{ | |
"code": "2042 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 39, | |
"b": 61 | |
}, | |
"positionInBook": 487 | |
}, | |
{ | |
"code": "7422 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 205, | |
"b": 212 | |
}, | |
"positionInBook": 488 | |
}, | |
{ | |
"code": "7423 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 98, | |
"b": 135 | |
}, | |
"positionInBook": 489 | |
}, | |
{ | |
"code": "7424 C", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 69, | |
"b": 133 | |
}, | |
"positionInBook": 490 | |
}, | |
{ | |
"code": "7425 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 37, | |
"b": 85 | |
}, | |
"positionInBook": 491 | |
}, | |
{ | |
"code": "7426 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 18, | |
"b": 63 | |
}, | |
"positionInBook": 492 | |
}, | |
{ | |
"code": "7427 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 27, | |
"b": 47 | |
}, | |
"positionInBook": 493 | |
}, | |
{ | |
"code": "7428 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 44, | |
"b": 62 | |
}, | |
"positionInBook": 494 | |
}, | |
{ | |
"code": "7632 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 201, | |
"b": 202 | |
}, | |
"positionInBook": 495 | |
}, | |
{ | |
"code": "7633 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 164, | |
"b": 167 | |
}, | |
"positionInBook": 496 | |
}, | |
{ | |
"code": "7634 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 103, | |
"b": 132 | |
}, | |
"positionInBook": 497 | |
}, | |
{ | |
"code": "7635 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 54, | |
"b": 99 | |
}, | |
"positionInBook": 498 | |
}, | |
{ | |
"code": "7636 C", | |
"name": null, | |
"rgb": { | |
"r": 188, | |
"g": 32, | |
"b": 75 | |
}, | |
"positionInBook": 499 | |
}, | |
{ | |
"code": "7637 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 47, | |
"b": 70 | |
}, | |
"positionInBook": 500 | |
}, | |
{ | |
"code": "7638 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 45, | |
"b": 64 | |
}, | |
"positionInBook": 501 | |
}, | |
{ | |
"code": "217 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 190, | |
"b": 219 | |
}, | |
"positionInBook": 502 | |
}, | |
{ | |
"code": "218 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 109, | |
"b": 177 | |
}, | |
"positionInBook": 503 | |
}, | |
{ | |
"code": "219 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 25, | |
"b": 132 | |
}, | |
"positionInBook": 504 | |
}, | |
{ | |
"code": "Rubine Red C", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 0, | |
"b": 88 | |
}, | |
"positionInBook": 505 | |
}, | |
{ | |
"code": "220 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 0, | |
"b": 80 | |
}, | |
"positionInBook": 506 | |
}, | |
{ | |
"code": "221 C", | |
"name": null, | |
"rgb": { | |
"r": 145, | |
"g": 0, | |
"b": 72 | |
}, | |
"positionInBook": 507 | |
}, | |
{ | |
"code": "222 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 29, | |
"b": 69 | |
}, | |
"positionInBook": 508 | |
}, | |
{ | |
"code": "7639 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 109, | |
"b": 115 | |
}, | |
"positionInBook": 509 | |
}, | |
{ | |
"code": "7640 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 64, | |
"b": 84 | |
}, | |
"positionInBook": 510 | |
}, | |
{ | |
"code": "7641 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 44, | |
"b": 72 | |
}, | |
"positionInBook": 511 | |
}, | |
{ | |
"code": "7642 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 46, | |
"b": 74 | |
}, | |
"positionInBook": 512 | |
}, | |
{ | |
"code": "7643 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 46, | |
"b": 69 | |
}, | |
"positionInBook": 513 | |
}, | |
{ | |
"code": "7644 C", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 45, | |
"b": 64 | |
}, | |
"positionInBook": 514 | |
}, | |
{ | |
"code": "7645 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 43, | |
"b": 58 | |
}, | |
"positionInBook": 515 | |
}, | |
{ | |
"code": "223 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 149, | |
"b": 207 | |
}, | |
"positionInBook": 516 | |
}, | |
{ | |
"code": "224 C", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 111, | |
"b": 189 | |
}, | |
"positionInBook": 517 | |
}, | |
{ | |
"code": "225 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 25, | |
"b": 149 | |
}, | |
"positionInBook": 518 | |
}, | |
{ | |
"code": "226 C", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 0, | |
"b": 112 | |
}, | |
"positionInBook": 519 | |
}, | |
{ | |
"code": "227 C", | |
"name": null, | |
"rgb": { | |
"r": 170, | |
"g": 0, | |
"b": 97 | |
}, | |
"positionInBook": 520 | |
}, | |
{ | |
"code": "228 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 12, | |
"b": 88 | |
}, | |
"positionInBook": 521 | |
}, | |
{ | |
"code": "229 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 33, | |
"b": 70 | |
}, | |
"positionInBook": 522 | |
}, | |
{ | |
"code": "230 C", | |
"name": null, | |
"rgb": { | |
"r": 244, | |
"g": 166, | |
"b": 215 | |
}, | |
"positionInBook": 523 | |
}, | |
{ | |
"code": "231 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 119, | |
"b": 198 | |
}, | |
"positionInBook": 524 | |
}, | |
{ | |
"code": "232 C", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 60, | |
"b": 172 | |
}, | |
"positionInBook": 525 | |
}, | |
{ | |
"code": "Rhodamine Red C", | |
"name": null, | |
"rgb": { | |
"r": 225, | |
"g": 0, | |
"b": 152 | |
}, | |
"positionInBook": 526 | |
}, | |
{ | |
"code": "233 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 0, | |
"b": 126 | |
}, | |
"positionInBook": 527 | |
}, | |
{ | |
"code": "234 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 0, | |
"b": 103 | |
}, | |
"positionInBook": 528 | |
}, | |
{ | |
"code": "235 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 11, | |
"b": 85 | |
}, | |
"positionInBook": 529 | |
}, | |
{ | |
"code": "670 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 211, | |
"b": 226 | |
}, | |
"positionInBook": 530 | |
}, | |
{ | |
"code": "671 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 188, | |
"b": 215 | |
}, | |
"positionInBook": 531 | |
}, | |
{ | |
"code": "672 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 160, | |
"b": 201 | |
}, | |
"positionInBook": 532 | |
}, | |
{ | |
"code": "673 C", | |
"name": null, | |
"rgb": { | |
"r": 217, | |
"g": 134, | |
"b": 186 | |
}, | |
"positionInBook": 533 | |
}, | |
{ | |
"code": "674 C", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 87, | |
"b": 154 | |
}, | |
"positionInBook": 534 | |
}, | |
{ | |
"code": "675 C", | |
"name": null, | |
"rgb": { | |
"r": 174, | |
"g": 37, | |
"b": 115 | |
}, | |
"positionInBook": 535 | |
}, | |
{ | |
"code": "676 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 0, | |
"b": 81 | |
}, | |
"positionInBook": 536 | |
}, | |
{ | |
"code": "2043 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 196, | |
"b": 210 | |
}, | |
"positionInBook": 537 | |
}, | |
{ | |
"code": "2044 C", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 147, | |
"b": 183 | |
}, | |
"positionInBook": 538 | |
}, | |
{ | |
"code": "2045 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 116, | |
"b": 161 | |
}, | |
"positionInBook": 539 | |
}, | |
{ | |
"code": "2046 C", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 87, | |
"b": 138 | |
}, | |
"positionInBook": 540 | |
}, | |
{ | |
"code": "2047 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 69, | |
"b": 112 | |
}, | |
"positionInBook": 541 | |
}, | |
{ | |
"code": "2048 C", | |
"name": null, | |
"rgb": { | |
"r": 151, | |
"g": 57, | |
"b": 97 | |
}, | |
"positionInBook": 542 | |
}, | |
{ | |
"code": "2049 C", | |
"name": null, | |
"rgb": { | |
"r": 133, | |
"g": 44, | |
"b": 77 | |
}, | |
"positionInBook": 543 | |
}, | |
{ | |
"code": "677 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 206, | |
"b": 219 | |
}, | |
"positionInBook": 544 | |
}, | |
{ | |
"code": "678 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 200, | |
"b": 216 | |
}, | |
"positionInBook": 545 | |
}, | |
{ | |
"code": "679 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 190, | |
"b": 210 | |
}, | |
"positionInBook": 546 | |
}, | |
{ | |
"code": "680 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 150, | |
"b": 182 | |
}, | |
"positionInBook": 547 | |
}, | |
{ | |
"code": "681 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 108, | |
"b": 149 | |
}, | |
"positionInBook": 548 | |
}, | |
{ | |
"code": "682 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 72, | |
"b": 120 | |
}, | |
"positionInBook": 549 | |
}, | |
{ | |
"code": "683 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 40, | |
"b": 85 | |
}, | |
"positionInBook": 550 | |
}, | |
{ | |
"code": "2050 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 215, | |
"b": 229 | |
}, | |
"positionInBook": 551 | |
}, | |
{ | |
"code": "2051 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 194, | |
"b": 207 | |
}, | |
"positionInBook": 552 | |
}, | |
{ | |
"code": "2052 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 159, | |
"b": 182 | |
}, | |
"positionInBook": 553 | |
}, | |
{ | |
"code": "2053 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 128, | |
"b": 157 | |
}, | |
"positionInBook": 554 | |
}, | |
{ | |
"code": "2054 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 112, | |
"b": 139 | |
}, | |
"positionInBook": 555 | |
}, | |
{ | |
"code": "2055 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 94, | |
"b": 123 | |
}, | |
"positionInBook": 556 | |
}, | |
{ | |
"code": "2056 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 73, | |
"b": 102 | |
}, | |
"positionInBook": 557 | |
}, | |
{ | |
"code": "684 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 198, | |
"b": 212 | |
}, | |
"positionInBook": 558 | |
}, | |
{ | |
"code": "685 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 182, | |
"b": 201 | |
}, | |
"positionInBook": 559 | |
}, | |
{ | |
"code": "686 C", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 161, | |
"b": 186 | |
}, | |
"positionInBook": 560 | |
}, | |
{ | |
"code": "687 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 132, | |
"b": 163 | |
}, | |
"positionInBook": 561 | |
}, | |
{ | |
"code": "688 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 99, | |
"b": 137 | |
}, | |
"positionInBook": 562 | |
}, | |
{ | |
"code": "689 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 59, | |
"b": 103 | |
}, | |
"positionInBook": 563 | |
}, | |
{ | |
"code": "690 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 33, | |
"b": 65 | |
}, | |
"positionInBook": 564 | |
}, | |
{ | |
"code": "510 C", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 190, | |
"b": 203 | |
}, | |
"positionInBook": 565 | |
}, | |
{ | |
"code": "509 C", | |
"name": null, | |
"rgb": { | |
"r": 232, | |
"g": 179, | |
"b": 195 | |
}, | |
"positionInBook": 566 | |
}, | |
{ | |
"code": "508 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 169, | |
"b": 187 | |
}, | |
"positionInBook": 567 | |
}, | |
{ | |
"code": "507 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 146, | |
"b": 170 | |
}, | |
"positionInBook": 568 | |
}, | |
{ | |
"code": "506 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 52, | |
"b": 78 | |
}, | |
"positionInBook": 569 | |
}, | |
{ | |
"code": "505 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 44, | |
"b": 63 | |
}, | |
"positionInBook": 570 | |
}, | |
{ | |
"code": "504 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 41, | |
"b": 50 | |
}, | |
"positionInBook": 571 | |
}, | |
{ | |
"code": "7429 C", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 188, | |
"b": 203 | |
}, | |
"positionInBook": 572 | |
}, | |
{ | |
"code": "7430 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 169, | |
"b": 191 | |
}, | |
"positionInBook": 573 | |
}, | |
{ | |
"code": "7431 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 128, | |
"b": 158 | |
}, | |
"positionInBook": 574 | |
}, | |
{ | |
"code": "7432 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 92, | |
"b": 128 | |
}, | |
"positionInBook": 575 | |
}, | |
{ | |
"code": "7433 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 58, | |
"b": 100 | |
}, | |
"positionInBook": 576 | |
}, | |
{ | |
"code": "7434 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 51, | |
"b": 89 | |
}, | |
"positionInBook": 577 | |
}, | |
{ | |
"code": "7435 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 38, | |
"b": 81 | |
}, | |
"positionInBook": 578 | |
}, | |
{ | |
"code": "691 C", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 205, | |
"b": 208 | |
}, | |
"positionInBook": 579 | |
}, | |
{ | |
"code": "692 C", | |
"name": null, | |
"rgb": { | |
"r": 227, | |
"g": 190, | |
"b": 195 | |
}, | |
"positionInBook": 580 | |
}, | |
{ | |
"code": "693 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 163, | |
"b": 171 | |
}, | |
"positionInBook": 581 | |
}, | |
{ | |
"code": "694 C", | |
"name": null, | |
"rgb": { | |
"r": 196, | |
"g": 132, | |
"b": 144 | |
}, | |
"positionInBook": 582 | |
}, | |
{ | |
"code": "695 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 107, | |
"b": 122 | |
}, | |
"positionInBook": 583 | |
}, | |
{ | |
"code": "696 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 72, | |
"b": 87 | |
}, | |
"positionInBook": 584 | |
}, | |
{ | |
"code": "697 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 60, | |
"b": 71 | |
}, | |
"positionInBook": 585 | |
}, | |
{ | |
"code": "496 C", | |
"name": null, | |
"rgb": { | |
"r": 242, | |
"g": 198, | |
"b": 207 | |
}, | |
"positionInBook": 586 | |
}, | |
{ | |
"code": "495 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 189, | |
"b": 200 | |
}, | |
"positionInBook": 587 | |
}, | |
{ | |
"code": "494 C", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 162, | |
"b": 178 | |
}, | |
"positionInBook": 588 | |
}, | |
{ | |
"code": "493 C", | |
"name": null, | |
"rgb": { | |
"r": 220, | |
"g": 134, | |
"b": 153 | |
}, | |
"positionInBook": 589 | |
}, | |
{ | |
"code": "492 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 50, | |
"b": 55 | |
}, | |
"positionInBook": 590 | |
}, | |
{ | |
"code": "491 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 48, | |
"b": 53 | |
}, | |
"positionInBook": 591 | |
}, | |
{ | |
"code": "490 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 42, | |
"b": 44 | |
}, | |
"positionInBook": 592 | |
}, | |
{ | |
"code": "503 C", | |
"name": null, | |
"rgb": { | |
"r": 233, | |
"g": 197, | |
"b": 199 | |
}, | |
"positionInBook": 593 | |
}, | |
{ | |
"code": "502 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 186, | |
"b": 193 | |
}, | |
"positionInBook": 594 | |
}, | |
{ | |
"code": "501 C", | |
"name": null, | |
"rgb": { | |
"r": 218, | |
"g": 165, | |
"b": 173 | |
}, | |
"positionInBook": 595 | |
}, | |
{ | |
"code": "500 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 133, | |
"b": 143 | |
}, | |
"positionInBook": 596 | |
}, | |
{ | |
"code": "499 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 62, | |
"b": 58 | |
}, | |
"positionInBook": 597 | |
}, | |
{ | |
"code": "498 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 55, | |
"b": 53 | |
}, | |
"positionInBook": 598 | |
}, | |
{ | |
"code": "497 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 47, | |
"b": 46 | |
}, | |
"positionInBook": 599 | |
}, | |
{ | |
"code": "5035 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 194, | |
"b": 195 | |
}, | |
"positionInBook": 600 | |
}, | |
{ | |
"code": "5025 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 183, | |
"b": 187 | |
}, | |
"positionInBook": 601 | |
}, | |
{ | |
"code": "5015 C", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 161, | |
"b": 166 | |
}, | |
"positionInBook": 602 | |
}, | |
{ | |
"code": "5005 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 124, | |
"b": 131 | |
}, | |
"positionInBook": 603 | |
}, | |
{ | |
"code": "4995 C", | |
"name": null, | |
"rgb": { | |
"r": 156, | |
"g": 97, | |
"b": 105 | |
}, | |
"positionInBook": 604 | |
}, | |
{ | |
"code": "4985 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 75, | |
"b": 82 | |
}, | |
"positionInBook": 605 | |
}, | |
{ | |
"code": "4975 C", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 32, | |
"b": 33 | |
}, | |
"positionInBook": 606 | |
}, | |
{ | |
"code": "236 C", | |
"name": null, | |
"rgb": { | |
"r": 241, | |
"g": 167, | |
"b": 220 | |
}, | |
"positionInBook": 607 | |
}, | |
{ | |
"code": "237 C", | |
"name": null, | |
"rgb": { | |
"r": 236, | |
"g": 134, | |
"b": 208 | |
}, | |
"positionInBook": 608 | |
}, | |
{ | |
"code": "238 C", | |
"name": null, | |
"rgb": { | |
"r": 228, | |
"g": 93, | |
"b": 191 | |
}, | |
"positionInBook": 609 | |
}, | |
{ | |
"code": "239 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 62, | |
"b": 177 | |
}, | |
"positionInBook": 610 | |
}, | |
{ | |
"code": "240 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 41, | |
"b": 155 | |
}, | |
"positionInBook": 611 | |
}, | |
{ | |
"code": "241 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 22, | |
"b": 133 | |
}, | |
"positionInBook": 612 | |
}, | |
{ | |
"code": "242 C", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 34, | |
"b": 95 | |
}, | |
"positionInBook": 613 | |
}, | |
{ | |
"code": "2057 C", | |
"name": null, | |
"rgb": { | |
"r": 207, | |
"g": 146, | |
"b": 183 | |
}, | |
"positionInBook": 614 | |
}, | |
{ | |
"code": "2058 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 133, | |
"b": 171 | |
}, | |
"positionInBook": 615 | |
}, | |
{ | |
"code": "2059 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 123, | |
"b": 161 | |
}, | |
"positionInBook": 616 | |
}, | |
{ | |
"code": "2060 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 107, | |
"b": 168 | |
}, | |
"positionInBook": 617 | |
}, | |
{ | |
"code": "2061 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 83, | |
"b": 137 | |
}, | |
"positionInBook": 618 | |
}, | |
{ | |
"code": "2062 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 69, | |
"b": 141 | |
}, | |
"positionInBook": 619 | |
}, | |
{ | |
"code": "2063 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 48, | |
"b": 124 | |
}, | |
"positionInBook": 620 | |
}, | |
{ | |
"code": "2365 C", | |
"name": null, | |
"rgb": { | |
"r": 239, | |
"g": 186, | |
"b": 225 | |
}, | |
"positionInBook": 621 | |
}, | |
{ | |
"code": "2375 C", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 119, | |
"b": 205 | |
}, | |
"positionInBook": 622 | |
}, | |
{ | |
"code": "2385 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 57, | |
"b": 181 | |
}, | |
"positionInBook": 623 | |
}, | |
{ | |
"code": "2395 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 0, | |
"b": 161 | |
}, | |
"positionInBook": 624 | |
}, | |
{ | |
"code": "2405 C", | |
"name": null, | |
"rgb": { | |
"r": 176, | |
"g": 0, | |
"b": 142 | |
}, | |
"positionInBook": 625 | |
}, | |
{ | |
"code": "2415 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 0, | |
"b": 126 | |
}, | |
"positionInBook": 626 | |
}, | |
{ | |
"code": "2425 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 0, | |
"b": 101 | |
}, | |
"positionInBook": 627 | |
}, | |
{ | |
"code": "243 C", | |
"name": null, | |
"rgb": { | |
"r": 234, | |
"g": 184, | |
"b": 228 | |
}, | |
"positionInBook": 628 | |
}, | |
{ | |
"code": "244 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 155, | |
"b": 220 | |
}, | |
"positionInBook": 629 | |
}, | |
{ | |
"code": "245 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 127, | |
"b": 211 | |
}, | |
"positionInBook": 630 | |
}, | |
{ | |
"code": "246 C", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 36, | |
"b": 177 | |
}, | |
"positionInBook": 631 | |
}, | |
{ | |
"code": "247 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 22, | |
"b": 163 | |
}, | |
"positionInBook": 632 | |
}, | |
{ | |
"code": "248 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 24, | |
"b": 144 | |
}, | |
"positionInBook": 633 | |
}, | |
{ | |
"code": "249 C", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 40, | |
"b": 108 | |
}, | |
"positionInBook": 634 | |
}, | |
{ | |
"code": "7646 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 110, | |
"b": 135 | |
}, | |
"positionInBook": 635 | |
}, | |
{ | |
"code": "7647 C", | |
"name": null, | |
"rgb": { | |
"r": 168, | |
"g": 61, | |
"b": 114 | |
}, | |
"positionInBook": 636 | |
}, | |
{ | |
"code": "7648 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 30, | |
"b": 102 | |
}, | |
"positionInBook": 637 | |
}, | |
{ | |
"code": "7649 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 27, | |
"b": 97 | |
}, | |
"positionInBook": 638 | |
}, | |
{ | |
"code": "7650 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 34, | |
"b": 87 | |
}, | |
"positionInBook": 639 | |
}, | |
{ | |
"code": "7651 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 42, | |
"b": 91 | |
}, | |
"positionInBook": 640 | |
}, | |
{ | |
"code": "7652 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 39, | |
"b": 81 | |
}, | |
"positionInBook": 641 | |
}, | |
{ | |
"code": "250 C", | |
"name": null, | |
"rgb": { | |
"r": 231, | |
"g": 186, | |
"b": 228 | |
}, | |
"positionInBook": 642 | |
}, | |
{ | |
"code": "251 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 156, | |
"b": 223 | |
}, | |
"positionInBook": 643 | |
}, | |
{ | |
"code": "252 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 100, | |
"b": 207 | |
}, | |
"positionInBook": 644 | |
}, | |
{ | |
"code": "Purple C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 41, | |
"b": 187 | |
}, | |
"positionInBook": 645 | |
}, | |
{ | |
"code": "253 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 26, | |
"b": 172 | |
}, | |
"positionInBook": 646 | |
}, | |
{ | |
"code": "254 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 30, | |
"b": 151 | |
}, | |
"positionInBook": 647 | |
}, | |
{ | |
"code": "255 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 36, | |
"b": 108 | |
}, | |
"positionInBook": 648 | |
}, | |
{ | |
"code": "2064 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 162, | |
"b": 212 | |
}, | |
"positionInBook": 649 | |
}, | |
{ | |
"code": "2065 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 168, | |
"b": 221 | |
}, | |
"positionInBook": 650 | |
}, | |
{ | |
"code": "2066 C", | |
"name": null, | |
"rgb": { | |
"r": 210, | |
"g": 141, | |
"b": 211 | |
}, | |
"positionInBook": 651 | |
}, | |
{ | |
"code": "2067 C", | |
"name": null, | |
"rgb": { | |
"r": 192, | |
"g": 105, | |
"b": 194 | |
}, | |
"positionInBook": 652 | |
}, | |
{ | |
"code": "2068 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 78, | |
"b": 181 | |
}, | |
"positionInBook": 653 | |
}, | |
{ | |
"code": "2069 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 56, | |
"b": 168 | |
}, | |
"positionInBook": 654 | |
}, | |
{ | |
"code": "2070 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 26, | |
"b": 149 | |
}, | |
"positionInBook": 655 | |
}, | |
{ | |
"code": "517 C", | |
"name": null, | |
"rgb": { | |
"r": 235, | |
"g": 198, | |
"b": 223 | |
}, | |
"positionInBook": 656 | |
}, | |
{ | |
"code": "516 C", | |
"name": null, | |
"rgb": { | |
"r": 230, | |
"g": 190, | |
"b": 221 | |
}, | |
"positionInBook": 657 | |
}, | |
{ | |
"code": "515 C", | |
"name": null, | |
"rgb": { | |
"r": 226, | |
"g": 172, | |
"b": 215 | |
}, | |
"positionInBook": 658 | |
}, | |
{ | |
"code": "514 C", | |
"name": null, | |
"rgb": { | |
"r": 212, | |
"g": 139, | |
"b": 200 | |
}, | |
"positionInBook": 659 | |
}, | |
{ | |
"code": "513 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 50, | |
"b": 142 | |
}, | |
"positionInBook": 660 | |
}, | |
{ | |
"code": "512 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 49, | |
"b": 119 | |
}, | |
"positionInBook": 661 | |
}, | |
{ | |
"code": "511 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 44, | |
"b": 81 | |
}, | |
"positionInBook": 662 | |
}, | |
{ | |
"code": "2351 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 122, | |
"b": 179 | |
}, | |
"positionInBook": 663 | |
}, | |
{ | |
"code": "2352 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 101, | |
"b": 167 | |
}, | |
"positionInBook": 664 | |
}, | |
{ | |
"code": "2353 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 77, | |
"b": 165 | |
}, | |
"positionInBook": 665 | |
}, | |
{ | |
"code": "2354 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 78, | |
"b": 140 | |
}, | |
"positionInBook": 666 | |
}, | |
{ | |
"code": "2355 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 3, | |
"b": 123 | |
}, | |
"positionInBook": 667 | |
}, | |
{ | |
"code": "2356 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 0, | |
"b": 98 | |
}, | |
"positionInBook": 668 | |
}, | |
{ | |
"code": "2357 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 18, | |
"b": 68 | |
}, | |
"positionInBook": 669 | |
}, | |
{ | |
"code": "7653 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 135, | |
"b": 148 | |
}, | |
"positionInBook": 670 | |
}, | |
{ | |
"code": "7654 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 120, | |
"b": 156 | |
}, | |
"positionInBook": 671 | |
}, | |
{ | |
"code": "7655 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 90, | |
"b": 149 | |
}, | |
"positionInBook": 672 | |
}, | |
{ | |
"code": "7656 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 58, | |
"b": 128 | |
}, | |
"positionInBook": 673 | |
}, | |
{ | |
"code": "7657 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 43, | |
"b": 98 | |
}, | |
"positionInBook": 674 | |
}, | |
{ | |
"code": "7658 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 52, | |
"b": 96 | |
}, | |
"positionInBook": 675 | |
}, | |
{ | |
"code": "7659 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 55, | |
"b": 84 | |
}, | |
"positionInBook": 676 | |
}, | |
{ | |
"code": "5175 C", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 200, | |
"b": 209 | |
}, | |
"positionInBook": 677 | |
}, | |
{ | |
"code": "5165 C", | |
"name": null, | |
"rgb": { | |
"r": 211, | |
"g": 192, | |
"b": 205 | |
}, | |
"positionInBook": 678 | |
}, | |
{ | |
"code": "5155 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 165, | |
"b": 184 | |
}, | |
"positionInBook": 679 | |
}, | |
{ | |
"code": "5145 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 119, | |
"b": 147 | |
}, | |
"positionInBook": 680 | |
}, | |
{ | |
"code": "5135 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 84, | |
"b": 117 | |
}, | |
"positionInBook": 681 | |
}, | |
{ | |
"code": "5125 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 60, | |
"b": 94 | |
}, | |
"positionInBook": 682 | |
}, | |
{ | |
"code": "5115 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 42, | |
"b": 68 | |
}, | |
"positionInBook": 683 | |
}, | |
{ | |
"code": "5245 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 205, | |
"b": 211 | |
}, | |
"positionInBook": 684 | |
}, | |
{ | |
"code": "5235 C", | |
"name": null, | |
"rgb": { | |
"r": 208, | |
"g": 190, | |
"b": 199 | |
}, | |
"positionInBook": 685 | |
}, | |
{ | |
"code": "5225 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 176, | |
"b": 188 | |
}, | |
"positionInBook": 686 | |
}, | |
{ | |
"code": "5215 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 149, | |
"b": 166 | |
}, | |
"positionInBook": 687 | |
}, | |
{ | |
"code": "5205 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 100, | |
"b": 122 | |
}, | |
"positionInBook": 688 | |
}, | |
{ | |
"code": "5195 C", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 67, | |
"b": 90 | |
}, | |
"positionInBook": 689 | |
}, | |
{ | |
"code": "5185 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 48, | |
"b": 65 | |
}, | |
"positionInBook": 690 | |
}, | |
{ | |
"code": "524 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 194, | |
"b": 216 | |
}, | |
"positionInBook": 691 | |
}, | |
{ | |
"code": "523 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 177, | |
"b": 208 | |
}, | |
"positionInBook": 692 | |
}, | |
{ | |
"code": "522 C", | |
"name": null, | |
"rgb": { | |
"r": 186, | |
"g": 156, | |
"b": 197 | |
}, | |
"positionInBook": 693 | |
}, | |
{ | |
"code": "521 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 127, | |
"b": 178 | |
}, | |
"positionInBook": 694 | |
}, | |
{ | |
"code": "520 C", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 47, | |
"b": 108 | |
}, | |
"positionInBook": 695 | |
}, | |
{ | |
"code": "519 C", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 49, | |
"b": 95 | |
}, | |
"positionInBook": 696 | |
}, | |
{ | |
"code": "518 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 48, | |
"b": 72 | |
}, | |
"positionInBook": 697 | |
}, | |
{ | |
"code": "7436 C", | |
"name": null, | |
"rgb": { | |
"r": 238, | |
"g": 218, | |
"b": 234 | |
}, | |
"positionInBook": 698 | |
}, | |
{ | |
"code": "7437 C", | |
"name": null, | |
"rgb": { | |
"r": 204, | |
"g": 174, | |
"b": 208 | |
}, | |
"positionInBook": 699 | |
}, | |
{ | |
"code": "7438 C", | |
"name": null, | |
"rgb": { | |
"r": 213, | |
"g": 158, | |
"b": 215 | |
}, | |
"positionInBook": 700 | |
}, | |
{ | |
"code": "7439 C", | |
"name": null, | |
"rgb": { | |
"r": 178, | |
"g": 136, | |
"b": 185 | |
}, | |
"positionInBook": 701 | |
}, | |
{ | |
"code": "7440 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 119, | |
"b": 166 | |
}, | |
"positionInBook": 702 | |
}, | |
{ | |
"code": "7441 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 92, | |
"b": 192 | |
}, | |
"positionInBook": 703 | |
}, | |
{ | |
"code": "7442 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 60, | |
"b": 189 | |
}, | |
"positionInBook": 704 | |
}, | |
{ | |
"code": "2562 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 169, | |
"b": 227 | |
}, | |
"positionInBook": 705 | |
}, | |
{ | |
"code": "2572 C", | |
"name": null, | |
"rgb": { | |
"r": 201, | |
"g": 139, | |
"b": 219 | |
}, | |
"positionInBook": 706 | |
}, | |
{ | |
"code": "2582 C", | |
"name": null, | |
"rgb": { | |
"r": 172, | |
"g": 79, | |
"b": 198 | |
}, | |
"positionInBook": 707 | |
}, | |
{ | |
"code": "2592 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 38, | |
"b": 182 | |
}, | |
"positionInBook": 708 | |
}, | |
{ | |
"code": "2602 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 24, | |
"b": 157 | |
}, | |
"positionInBook": 709 | |
}, | |
{ | |
"code": "2612 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 37, | |
"b": 131 | |
}, | |
"positionInBook": 710 | |
}, | |
{ | |
"code": "2622 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 49, | |
"b": 101 | |
}, | |
"positionInBook": 711 | |
}, | |
{ | |
"code": "531 C", | |
"name": null, | |
"rgb": { | |
"r": 223, | |
"g": 200, | |
"b": 231 | |
}, | |
"positionInBook": 712 | |
}, | |
{ | |
"code": "530 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 185, | |
"b": 228 | |
}, | |
"positionInBook": 713 | |
}, | |
{ | |
"code": "529 C", | |
"name": null, | |
"rgb": { | |
"r": 202, | |
"g": 162, | |
"b": 221 | |
}, | |
"positionInBook": 714 | |
}, | |
{ | |
"code": "528 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 128, | |
"b": 209 | |
}, | |
"positionInBook": 715 | |
}, | |
{ | |
"code": "527 C", | |
"name": null, | |
"rgb": { | |
"r": 128, | |
"g": 49, | |
"b": 167 | |
}, | |
"positionInBook": 716 | |
}, | |
{ | |
"code": "526 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 47, | |
"b": 138 | |
}, | |
"positionInBook": 717 | |
}, | |
{ | |
"code": "525 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 44, | |
"b": 95 | |
}, | |
"positionInBook": 718 | |
}, | |
{ | |
"code": "256 C", | |
"name": null, | |
"rgb": { | |
"r": 214, | |
"g": 191, | |
"b": 221 | |
}, | |
"positionInBook": 719 | |
}, | |
{ | |
"code": "257 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 161, | |
"b": 207 | |
}, | |
"positionInBook": 720 | |
}, | |
{ | |
"code": "258 C", | |
"name": null, | |
"rgb": { | |
"r": 140, | |
"g": 71, | |
"b": 153 | |
}, | |
"positionInBook": 721 | |
}, | |
{ | |
"code": "259 C", | |
"name": null, | |
"rgb": { | |
"r": 109, | |
"g": 32, | |
"b": 119 | |
}, | |
"positionInBook": 722 | |
}, | |
{ | |
"code": "260 C", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 38, | |
"b": 103 | |
}, | |
"positionInBook": 723 | |
}, | |
{ | |
"code": "261 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 41, | |
"b": 95 | |
}, | |
"positionInBook": 724 | |
}, | |
{ | |
"code": "262 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 40, | |
"b": 79 | |
}, | |
"positionInBook": 725 | |
}, | |
{ | |
"code": "2563 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 163, | |
"b": 216 | |
}, | |
"positionInBook": 726 | |
}, | |
{ | |
"code": "2573 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 132, | |
"b": 203 | |
}, | |
"positionInBook": 727 | |
}, | |
{ | |
"code": "2583 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 94, | |
"b": 181 | |
}, | |
"positionInBook": 728 | |
}, | |
{ | |
"code": "2593 C", | |
"name": null, | |
"rgb": { | |
"r": 132, | |
"g": 50, | |
"b": 155 | |
}, | |
"positionInBook": 729 | |
}, | |
{ | |
"code": "2603 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 32, | |
"b": 130 | |
}, | |
"positionInBook": 730 | |
}, | |
{ | |
"code": "2613 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 30, | |
"b": 117 | |
}, | |
"positionInBook": 731 | |
}, | |
{ | |
"code": "2623 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 33, | |
"b": 103 | |
}, | |
"positionInBook": 732 | |
}, | |
{ | |
"code": "2078 C", | |
"name": null, | |
"rgb": { | |
"r": 181, | |
"g": 157, | |
"b": 187 | |
}, | |
"positionInBook": 733 | |
}, | |
{ | |
"code": "2079 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 126, | |
"b": 164 | |
}, | |
"positionInBook": 734 | |
}, | |
{ | |
"code": "2080 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 115, | |
"b": 172 | |
}, | |
"positionInBook": 735 | |
}, | |
{ | |
"code": "2081 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 94, | |
"b": 156 | |
}, | |
"positionInBook": 736 | |
}, | |
{ | |
"code": "2082 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 78, | |
"b": 144 | |
}, | |
"positionInBook": 737 | |
}, | |
{ | |
"code": "2083 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 94, | |
"b": 199 | |
}, | |
"positionInBook": 738 | |
}, | |
{ | |
"code": "2084 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 53, | |
"b": 178 | |
}, | |
"positionInBook": 739 | |
}, | |
{ | |
"code": "2071 C", | |
"name": null, | |
"rgb": { | |
"r": 199, | |
"g": 178, | |
"b": 222 | |
}, | |
"positionInBook": 740 | |
}, | |
{ | |
"code": "2072 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 150, | |
"b": 212 | |
}, | |
"positionInBook": 741 | |
}, | |
{ | |
"code": "2073 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 149, | |
"b": 211 | |
}, | |
"positionInBook": 742 | |
}, | |
{ | |
"code": "2074 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 105, | |
"b": 190 | |
}, | |
"positionInBook": 743 | |
}, | |
{ | |
"code": "2075 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 102, | |
"b": 188 | |
}, | |
"positionInBook": 744 | |
}, | |
{ | |
"code": "2076 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 89, | |
"b": 181 | |
}, | |
"positionInBook": 745 | |
}, | |
{ | |
"code": "2077 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 63, | |
"b": 163 | |
}, | |
"positionInBook": 746 | |
}, | |
{ | |
"code": "7660 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 145, | |
"b": 164 | |
}, | |
"positionInBook": 747 | |
}, | |
{ | |
"code": "7661 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 110, | |
"b": 151 | |
}, | |
"positionInBook": 748 | |
}, | |
{ | |
"code": "7662 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 66, | |
"b": 130 | |
}, | |
"positionInBook": 749 | |
}, | |
{ | |
"code": "7663 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 48, | |
"b": 119 | |
}, | |
"positionInBook": 750 | |
}, | |
{ | |
"code": "7664 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 51, | |
"b": 121 | |
}, | |
"positionInBook": 751 | |
}, | |
{ | |
"code": "7665 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 54, | |
"b": 110 | |
}, | |
"positionInBook": 752 | |
}, | |
{ | |
"code": "7666 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 78, | |
"b": 99 | |
}, | |
"positionInBook": 753 | |
}, | |
{ | |
"code": "2567 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 160, | |
"b": 218 | |
}, | |
"positionInBook": 754 | |
}, | |
{ | |
"code": "2577 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 123, | |
"b": 202 | |
}, | |
"positionInBook": 755 | |
}, | |
{ | |
"code": "2587 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 70, | |
"b": 175 | |
}, | |
"positionInBook": 756 | |
}, | |
{ | |
"code": "2597 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 6, | |
"b": 140 | |
}, | |
"positionInBook": 757 | |
}, | |
{ | |
"code": "2607 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 8, | |
"b": 120 | |
}, | |
"positionInBook": 758 | |
}, | |
{ | |
"code": "2617 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 10, | |
"b": 104 | |
}, | |
"positionInBook": 759 | |
}, | |
{ | |
"code": "2627 C", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 16, | |
"b": 83 | |
}, | |
"positionInBook": 760 | |
}, | |
{ | |
"code": "263 C", | |
"name": null, | |
"rgb": { | |
"r": 215, | |
"g": 198, | |
"b": 230 | |
}, | |
"positionInBook": 761 | |
}, | |
{ | |
"code": "264 C", | |
"name": null, | |
"rgb": { | |
"r": 193, | |
"g": 167, | |
"b": 226 | |
}, | |
"positionInBook": 762 | |
}, | |
{ | |
"code": "265 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 99, | |
"b": 205 | |
}, | |
"positionInBook": 763 | |
}, | |
{ | |
"code": "266 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 59, | |
"b": 189 | |
}, | |
"positionInBook": 764 | |
}, | |
{ | |
"code": "267 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 36, | |
"b": 159 | |
}, | |
"positionInBook": 765 | |
}, | |
{ | |
"code": "268 C", | |
"name": null, | |
"rgb": { | |
"r": 88, | |
"g": 44, | |
"b": 131 | |
}, | |
"positionInBook": 766 | |
}, | |
{ | |
"code": "269 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 45, | |
"b": 109 | |
}, | |
"positionInBook": 767 | |
}, | |
{ | |
"code": "2085 C", | |
"name": null, | |
"rgb": { | |
"r": 222, | |
"g": 205, | |
"b": 231 | |
}, | |
"positionInBook": 768 | |
}, | |
{ | |
"code": "2086 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 139, | |
"b": 203 | |
}, | |
"positionInBook": 769 | |
}, | |
{ | |
"code": "2087 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 125, | |
"b": 212 | |
}, | |
"positionInBook": 770 | |
}, | |
{ | |
"code": "2088 C", | |
"name": null, | |
"rgb": { | |
"r": 130, | |
"g": 93, | |
"b": 199 | |
}, | |
"positionInBook": 771 | |
}, | |
{ | |
"code": "2089 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 72, | |
"b": 189 | |
}, | |
"positionInBook": 772 | |
}, | |
{ | |
"code": "2090 C", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 56, | |
"b": 182 | |
}, | |
"positionInBook": 773 | |
}, | |
{ | |
"code": "2091 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 18, | |
"b": 161 | |
}, | |
"positionInBook": 774 | |
}, | |
{ | |
"code": "2635 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 180, | |
"b": 227 | |
}, | |
"positionInBook": 775 | |
}, | |
{ | |
"code": "2645 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 150, | |
"b": 220 | |
}, | |
"positionInBook": 776 | |
}, | |
{ | |
"code": "2655 C", | |
"name": null, | |
"rgb": { | |
"r": 150, | |
"g": 120, | |
"b": 211 | |
}, | |
"positionInBook": 777 | |
}, | |
{ | |
"code": "2665 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 85, | |
"b": 199 | |
}, | |
"positionInBook": 778 | |
}, | |
{ | |
"code": "Violet C", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 0, | |
"b": 153 | |
}, | |
"positionInBook": 779 | |
}, | |
{ | |
"code": "2685 C", | |
"name": null, | |
"rgb": { | |
"r": 51, | |
"g": 0, | |
"b": 114 | |
}, | |
"positionInBook": 780 | |
}, | |
{ | |
"code": "2695 C", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 26, | |
"b": 71 | |
}, | |
"positionInBook": 781 | |
}, | |
{ | |
"code": "2092 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 172, | |
"b": 214 | |
}, | |
"positionInBook": 782 | |
}, | |
{ | |
"code": "2093 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 153, | |
"b": 193 | |
}, | |
"positionInBook": 783 | |
}, | |
{ | |
"code": "2094 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 127, | |
"b": 174 | |
}, | |
"positionInBook": 784 | |
}, | |
{ | |
"code": "2095 C", | |
"name": null, | |
"rgb": { | |
"r": 121, | |
"g": 101, | |
"b": 178 | |
}, | |
"positionInBook": 785 | |
}, | |
{ | |
"code": "2096 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 78, | |
"b": 163 | |
}, | |
"positionInBook": 786 | |
}, | |
{ | |
"code": "2097 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 68, | |
"b": 187 | |
}, | |
"positionInBook": 787 | |
}, | |
{ | |
"code": "2098 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 37, | |
"b": 170 | |
}, | |
"positionInBook": 788 | |
}, | |
{ | |
"code": "2099 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 162, | |
"b": 202 | |
}, | |
"positionInBook": 789 | |
}, | |
{ | |
"code": "2100 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 143, | |
"b": 202 | |
}, | |
"positionInBook": 790 | |
}, | |
{ | |
"code": "2101 C", | |
"name": null, | |
"rgb": { | |
"r": 138, | |
"g": 117, | |
"b": 209 | |
}, | |
"positionInBook": 791 | |
}, | |
{ | |
"code": "2102 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 88, | |
"b": 177 | |
}, | |
"positionInBook": 792 | |
}, | |
{ | |
"code": "2103 C", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 73, | |
"b": 167 | |
}, | |
"positionInBook": 793 | |
}, | |
{ | |
"code": "2104 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 54, | |
"b": 152 | |
}, | |
"positionInBook": 794 | |
}, | |
{ | |
"code": "2105 C", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 32, | |
"b": 124 | |
}, | |
"positionInBook": 795 | |
}, | |
{ | |
"code": "270 C", | |
"name": null, | |
"rgb": { | |
"r": 180, | |
"g": 181, | |
"b": 223 | |
}, | |
"positionInBook": 796 | |
}, | |
{ | |
"code": "271 C", | |
"name": null, | |
"rgb": { | |
"r": 149, | |
"g": 149, | |
"b": 210 | |
}, | |
"positionInBook": 797 | |
}, | |
{ | |
"code": "272 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 116, | |
"b": 193 | |
}, | |
"positionInBook": 798 | |
}, | |
{ | |
"code": "273 C", | |
"name": null, | |
"rgb": { | |
"r": 36, | |
"g": 18, | |
"b": 95 | |
}, | |
"positionInBook": 799 | |
}, | |
{ | |
"code": "274 C", | |
"name": null, | |
"rgb": { | |
"r": 34, | |
"g": 21, | |
"b": 81 | |
}, | |
"positionInBook": 800 | |
}, | |
{ | |
"code": "275 C", | |
"name": null, | |
"rgb": { | |
"r": 33, | |
"g": 23, | |
"b": 71 | |
}, | |
"positionInBook": 801 | |
}, | |
{ | |
"code": "276 C", | |
"name": null, | |
"rgb": { | |
"r": 34, | |
"g": 28, | |
"b": 53 | |
}, | |
"positionInBook": 802 | |
}, | |
{ | |
"code": "2705 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 164, | |
"b": 224 | |
}, | |
"positionInBook": 803 | |
}, | |
{ | |
"code": "2715 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 132, | |
"b": 215 | |
}, | |
"positionInBook": 804 | |
}, | |
{ | |
"code": "2725 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 91, | |
"b": 199 | |
}, | |
"positionInBook": 805 | |
}, | |
{ | |
"code": "2735 C", | |
"name": null, | |
"rgb": { | |
"r": 46, | |
"g": 0, | |
"b": 139 | |
}, | |
"positionInBook": 806 | |
}, | |
{ | |
"code": "2745 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 0, | |
"b": 113 | |
}, | |
"positionInBook": 807 | |
}, | |
{ | |
"code": "2755 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 14, | |
"b": 98 | |
}, | |
"positionInBook": 808 | |
}, | |
{ | |
"code": "2765 C", | |
"name": null, | |
"rgb": { | |
"r": 32, | |
"g": 21, | |
"b": 71 | |
}, | |
"positionInBook": 809 | |
}, | |
{ | |
"code": "7667 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 124, | |
"b": 160 | |
}, | |
"positionInBook": 810 | |
}, | |
{ | |
"code": "7668 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 110, | |
"b": 159 | |
}, | |
"positionInBook": 811 | |
}, | |
{ | |
"code": "7669 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 94, | |
"b": 155 | |
}, | |
"positionInBook": 812 | |
}, | |
{ | |
"code": "7670 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 82, | |
"b": 148 | |
}, | |
"positionInBook": 813 | |
}, | |
{ | |
"code": "7671 C", | |
"name": null, | |
"rgb": { | |
"r": 81, | |
"g": 70, | |
"b": 137 | |
}, | |
"positionInBook": 814 | |
}, | |
{ | |
"code": "7672 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 64, | |
"b": 132 | |
}, | |
"positionInBook": 815 | |
}, | |
{ | |
"code": "7673 C", | |
"name": null, | |
"rgb": { | |
"r": 83, | |
"g": 84, | |
"b": 134 | |
}, | |
"positionInBook": 816 | |
}, | |
{ | |
"code": "7443 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 218, | |
"b": 232 | |
}, | |
"positionInBook": 817 | |
}, | |
{ | |
"code": "7444 C", | |
"name": null, | |
"rgb": { | |
"r": 182, | |
"g": 184, | |
"b": 220 | |
}, | |
"positionInBook": 818 | |
}, | |
{ | |
"code": "7445 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 162, | |
"b": 195 | |
}, | |
"positionInBook": 819 | |
}, | |
{ | |
"code": "7446 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 134, | |
"b": 202 | |
}, | |
"positionInBook": 820 | |
}, | |
{ | |
"code": "7447 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 71, | |
"b": 119 | |
}, | |
"positionInBook": 821 | |
}, | |
{ | |
"code": "7448 C", | |
"name": null, | |
"rgb": { | |
"r": 75, | |
"g": 56, | |
"b": 76 | |
}, | |
"positionInBook": 822 | |
}, | |
{ | |
"code": "7449 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 39, | |
"b": 59 | |
}, | |
"positionInBook": 823 | |
}, | |
{ | |
"code": "7674 C", | |
"name": null, | |
"rgb": { | |
"r": 135, | |
"g": 140, | |
"b": 180 | |
}, | |
"positionInBook": 824 | |
}, | |
{ | |
"code": "7675 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 127, | |
"b": 171 | |
}, | |
"positionInBook": 825 | |
}, | |
{ | |
"code": "7676 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 102, | |
"b": 160 | |
}, | |
"positionInBook": 826 | |
}, | |
{ | |
"code": "7677 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 80, | |
"b": 145 | |
}, | |
"positionInBook": 827 | |
}, | |
{ | |
"code": "7678 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 71, | |
"b": 141 | |
}, | |
"positionInBook": 828 | |
}, | |
{ | |
"code": "7679 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 61, | |
"b": 130 | |
}, | |
"positionInBook": 829 | |
}, | |
{ | |
"code": "7680 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 49, | |
"b": 120 | |
}, | |
"positionInBook": 830 | |
}, | |
{ | |
"code": "663 C", | |
"name": null, | |
"rgb": { | |
"r": 229, | |
"g": 225, | |
"b": 230 | |
}, | |
"positionInBook": 831 | |
}, | |
{ | |
"code": "664 C", | |
"name": null, | |
"rgb": { | |
"r": 224, | |
"g": 219, | |
"b": 227 | |
}, | |
"positionInBook": 832 | |
}, | |
{ | |
"code": "665 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 188, | |
"b": 208 | |
}, | |
"positionInBook": 833 | |
}, | |
{ | |
"code": "666 C", | |
"name": null, | |
"rgb": { | |
"r": 161, | |
"g": 146, | |
"b": 178 | |
}, | |
"positionInBook": 834 | |
}, | |
{ | |
"code": "667 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 105, | |
"b": 146 | |
}, | |
"positionInBook": 835 | |
}, | |
{ | |
"code": "668 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 75, | |
"b": 121 | |
}, | |
"positionInBook": 836 | |
}, | |
{ | |
"code": "669 C", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 42, | |
"b": 86 | |
}, | |
"positionInBook": 837 | |
}, | |
{ | |
"code": "5315 C", | |
"name": null, | |
"rgb": { | |
"r": 216, | |
"g": 215, | |
"b": 223 | |
}, | |
"positionInBook": 838 | |
}, | |
{ | |
"code": "5305 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 196, | |
"b": 210 | |
}, | |
"positionInBook": 839 | |
}, | |
{ | |
"code": "5295 C", | |
"name": null, | |
"rgb": { | |
"r": 179, | |
"g": 176, | |
"b": 196 | |
}, | |
"positionInBook": 840 | |
}, | |
{ | |
"code": "5285 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 137, | |
"b": 165 | |
}, | |
"positionInBook": 841 | |
}, | |
{ | |
"code": "5275 C", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 84, | |
"b": 120 | |
}, | |
"positionInBook": 842 | |
}, | |
{ | |
"code": "5265 C", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 58, | |
"b": 96 | |
}, | |
"positionInBook": 843 | |
}, | |
{ | |
"code": "5255 C", | |
"name": null, | |
"rgb": { | |
"r": 30, | |
"g": 26, | |
"b": 52 | |
}, | |
"positionInBook": 844 | |
}, | |
{ | |
"code": "2358 C", | |
"name": null, | |
"rgb": { | |
"r": 173, | |
"g": 164, | |
"b": 174 | |
}, | |
"positionInBook": 845 | |
}, | |
{ | |
"code": "2359 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 115, | |
"b": 132 | |
}, | |
"positionInBook": 846 | |
}, | |
{ | |
"code": "2360 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 121, | |
"b": 142 | |
}, | |
"positionInBook": 847 | |
}, | |
{ | |
"code": "2361 C", | |
"name": null, | |
"rgb": { | |
"r": 112, | |
"g": 112, | |
"b": 141 | |
}, | |
"positionInBook": 848 | |
}, | |
{ | |
"code": "2362 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 106, | |
"b": 129 | |
}, | |
"positionInBook": 849 | |
}, | |
{ | |
"code": "2363 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 93, | |
"b": 117 | |
}, | |
"positionInBook": 850 | |
}, | |
{ | |
"code": "2364 C", | |
"name": null, | |
"rgb": { | |
"r": 102, | |
"g": 89, | |
"b": 108 | |
}, | |
"positionInBook": 851 | |
}, | |
{ | |
"code": "2106 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 181, | |
"b": 206 | |
}, | |
"positionInBook": 852 | |
}, | |
{ | |
"code": "2107 C", | |
"name": null, | |
"rgb": { | |
"r": 144, | |
"g": 153, | |
"b": 186 | |
}, | |
"positionInBook": 853 | |
}, | |
{ | |
"code": "2108 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 127, | |
"b": 168 | |
}, | |
"positionInBook": 854 | |
}, | |
{ | |
"code": "2109 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 109, | |
"b": 153 | |
}, | |
"positionInBook": 855 | |
}, | |
{ | |
"code": "2110 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 97, | |
"b": 143 | |
}, | |
"positionInBook": 856 | |
}, | |
{ | |
"code": "2111 C", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 78, | |
"b": 126 | |
}, | |
"positionInBook": 857 | |
}, | |
{ | |
"code": "2112 C", | |
"name": null, | |
"rgb": { | |
"r": 53, | |
"g": 31, | |
"b": 101 | |
}, | |
"positionInBook": 858 | |
}, | |
{ | |
"code": "2113 C", | |
"name": null, | |
"rgb": { | |
"r": 165, | |
"g": 176, | |
"b": 227 | |
}, | |
"positionInBook": 859 | |
}, | |
{ | |
"code": "2114 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 141, | |
"b": 200 | |
}, | |
"positionInBook": 860 | |
}, | |
{ | |
"code": "2115 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 121, | |
"b": 189 | |
}, | |
"positionInBook": 861 | |
}, | |
{ | |
"code": "2116 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 104, | |
"b": 178 | |
}, | |
"positionInBook": 862 | |
}, | |
{ | |
"code": "2117 C", | |
"name": null, | |
"rgb": { | |
"r": 68, | |
"g": 73, | |
"b": 156 | |
}, | |
"positionInBook": 863 | |
}, | |
{ | |
"code": "2118 C", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 53, | |
"b": 121 | |
}, | |
"positionInBook": 864 | |
}, | |
{ | |
"code": "2119 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 46, | |
"b": 101 | |
}, | |
"positionInBook": 865 | |
}, | |
{ | |
"code": "2366 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 109, | |
"b": 205 | |
}, | |
"positionInBook": 866 | |
}, | |
{ | |
"code": "2367 C", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 76, | |
"b": 177 | |
}, | |
"positionInBook": 867 | |
}, | |
{ | |
"code": "2368 C", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 73, | |
"b": 190 | |
}, | |
"positionInBook": 868 | |
}, | |
{ | |
"code": "2369 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 63, | |
"b": 182 | |
}, | |
"positionInBook": 869 | |
}, | |
{ | |
"code": "2370 C", | |
"name": null, | |
"rgb": { | |
"r": 47, | |
"g": 42, | |
"b": 149 | |
}, | |
"positionInBook": 870 | |
}, | |
{ | |
"code": "2371 C", | |
"name": null, | |
"rgb": { | |
"r": 51, | |
"g": 5, | |
"b": 141 | |
}, | |
"positionInBook": 871 | |
}, | |
{ | |
"code": "2372 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 30, | |
"b": 120 | |
}, | |
"positionInBook": 872 | |
}, | |
{ | |
"code": "538 C", | |
"name": null, | |
"rgb": { | |
"r": 197, | |
"g": 207, | |
"b": 218 | |
}, | |
"positionInBook": 873 | |
}, | |
{ | |
"code": "537 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 199, | |
"b": 214 | |
}, | |
"positionInBook": 874 | |
}, | |
{ | |
"code": "536 C", | |
"name": null, | |
"rgb": { | |
"r": 162, | |
"g": 178, | |
"b": 200 | |
}, | |
"positionInBook": 875 | |
}, | |
{ | |
"code": "535 C", | |
"name": null, | |
"rgb": { | |
"r": 142, | |
"g": 159, | |
"b": 188 | |
}, | |
"positionInBook": 876 | |
}, | |
{ | |
"code": "534 C", | |
"name": null, | |
"rgb": { | |
"r": 27, | |
"g": 54, | |
"b": 93 | |
}, | |
"positionInBook": 877 | |
}, | |
{ | |
"code": "533 C", | |
"name": null, | |
"rgb": { | |
"r": 32, | |
"g": 42, | |
"b": 68 | |
}, | |
"positionInBook": 878 | |
}, | |
{ | |
"code": "532 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 31, | |
"b": 42 | |
}, | |
"positionInBook": 879 | |
}, | |
{ | |
"code": "7541 C", | |
"name": null, | |
"rgb": { | |
"r": 217, | |
"g": 225, | |
"b": 226 | |
}, | |
"positionInBook": 880 | |
}, | |
{ | |
"code": "7542 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 188, | |
"b": 194 | |
}, | |
"positionInBook": 881 | |
}, | |
{ | |
"code": "7543 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 164, | |
"b": 174 | |
}, | |
"positionInBook": 882 | |
}, | |
{ | |
"code": "7544 C", | |
"name": null, | |
"rgb": { | |
"r": 118, | |
"g": 134, | |
"b": 146 | |
}, | |
"positionInBook": 883 | |
}, | |
{ | |
"code": "7545 C", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 85, | |
"b": 99 | |
}, | |
"positionInBook": 884 | |
}, | |
{ | |
"code": "7546 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 55, | |
"b": 70 | |
}, | |
"positionInBook": 885 | |
}, | |
{ | |
"code": "7547 C", | |
"name": null, | |
"rgb": { | |
"r": 19, | |
"g": 30, | |
"b": 41 | |
}, | |
"positionInBook": 886 | |
}, | |
{ | |
"code": "2162 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 166, | |
"b": 180 | |
}, | |
"positionInBook": 887 | |
}, | |
{ | |
"code": "2163 C", | |
"name": null, | |
"rgb": { | |
"r": 134, | |
"g": 156, | |
"b": 174 | |
}, | |
"positionInBook": 888 | |
}, | |
{ | |
"code": "2164 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 147, | |
"b": 167 | |
}, | |
"positionInBook": 889 | |
}, | |
{ | |
"code": "2165 C", | |
"name": null, | |
"rgb": { | |
"r": 104, | |
"g": 129, | |
"b": 151 | |
}, | |
"positionInBook": 890 | |
}, | |
{ | |
"code": "2166 C", | |
"name": null, | |
"rgb": { | |
"r": 87, | |
"g": 114, | |
"b": 139 | |
}, | |
"positionInBook": 891 | |
}, | |
{ | |
"code": "2167 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 109, | |
"b": 133 | |
}, | |
"positionInBook": 892 | |
}, | |
{ | |
"code": "2168 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 74, | |
"b": 93 | |
}, | |
"positionInBook": 893 | |
}, | |
{ | |
"code": "2373 C", | |
"name": null, | |
"rgb": { | |
"r": 115, | |
"g": 130, | |
"b": 159 | |
}, | |
"positionInBook": 894 | |
}, | |
{ | |
"code": "2374 C", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 95, | |
"b": 128 | |
}, | |
"positionInBook": 895 | |
}, | |
{ | |
"code": "2376 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 91, | |
"b": 115 | |
}, | |
"positionInBook": 896 | |
}, | |
{ | |
"code": "2377 C", | |
"name": null, | |
"rgb": { | |
"r": 49, | |
"g": 84, | |
"b": 112 | |
}, | |
"positionInBook": 897 | |
}, | |
{ | |
"code": "2378 C", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 73, | |
"b": 103 | |
}, | |
"positionInBook": 898 | |
}, | |
{ | |
"code": "2379 C", | |
"name": null, | |
"rgb": { | |
"r": 59, | |
"g": 69, | |
"b": 89 | |
}, | |
"positionInBook": 899 | |
}, | |
{ | |
"code": "2380 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 51, | |
"b": 74 | |
}, | |
"positionInBook": 900 | |
}, | |
{ | |
"code": "552 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 211, | |
"b": 220 | |
}, | |
"positionInBook": 901 | |
}, | |
{ | |
"code": "551 C", | |
"name": null, | |
"rgb": { | |
"r": 163, | |
"g": 199, | |
"b": 210 | |
}, | |
"positionInBook": 902 | |
}, | |
{ | |
"code": "550 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 185, | |
"b": 202 | |
}, | |
"positionInBook": 903 | |
}, | |
{ | |
"code": "549 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 164, | |
"b": 184 | |
}, | |
"positionInBook": 904 | |
}, | |
{ | |
"code": "548 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 61, | |
"b": 76 | |
}, | |
"positionInBook": 905 | |
}, | |
{ | |
"code": "547 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 49, | |
"b": 60 | |
}, | |
"positionInBook": 906 | |
}, | |
{ | |
"code": "546 C", | |
"name": null, | |
"rgb": { | |
"r": 7, | |
"g": 43, | |
"b": 49 | |
}, | |
"positionInBook": 907 | |
}, | |
{ | |
"code": "5455 C", | |
"name": null, | |
"rgb": { | |
"r": 191, | |
"g": 206, | |
"b": 214 | |
}, | |
"positionInBook": 908 | |
}, | |
{ | |
"code": "5445 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 201, | |
"b": 211 | |
}, | |
"positionInBook": 909 | |
}, | |
{ | |
"code": "5435 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 187, | |
"b": 200 | |
}, | |
"positionInBook": 910 | |
}, | |
{ | |
"code": "5425 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 153, | |
"b": 172 | |
}, | |
"positionInBook": 911 | |
}, | |
{ | |
"code": "5415 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 127, | |
"b": 149 | |
}, | |
"positionInBook": 912 | |
}, | |
{ | |
"code": "5405 C", | |
"name": null, | |
"rgb": { | |
"r": 79, | |
"g": 117, | |
"b": 139 | |
}, | |
"positionInBook": 913 | |
}, | |
{ | |
"code": "5395 C", | |
"name": null, | |
"rgb": { | |
"r": 9, | |
"g": 31, | |
"b": 44 | |
}, | |
"positionInBook": 914 | |
}, | |
{ | |
"code": "2155 C", | |
"name": null, | |
"rgb": { | |
"r": 158, | |
"g": 181, | |
"b": 203 | |
}, | |
"positionInBook": 915 | |
}, | |
{ | |
"code": "2156 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 166, | |
"b": 193 | |
}, | |
"positionInBook": 916 | |
}, | |
{ | |
"code": "2157 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 148, | |
"b": 179 | |
}, | |
"positionInBook": 917 | |
}, | |
{ | |
"code": "2158 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 130, | |
"b": 165 | |
}, | |
"positionInBook": 918 | |
}, | |
{ | |
"code": "2159 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 118, | |
"b": 155 | |
}, | |
"positionInBook": 919 | |
}, | |
{ | |
"code": "2160 C", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 105, | |
"b": 145 | |
}, | |
"positionInBook": 920 | |
}, | |
{ | |
"code": "2161 C", | |
"name": null, | |
"rgb": { | |
"r": 40, | |
"g": 87, | |
"b": 128 | |
}, | |
"positionInBook": 921 | |
}, | |
{ | |
"code": "2134 C", | |
"name": null, | |
"rgb": { | |
"r": 147, | |
"g": 165, | |
"b": 207 | |
}, | |
"positionInBook": 922 | |
}, | |
{ | |
"code": "2135 C", | |
"name": null, | |
"rgb": { | |
"r": 117, | |
"g": 140, | |
"b": 192 | |
}, | |
"positionInBook": 923 | |
}, | |
{ | |
"code": "2136 C", | |
"name": null, | |
"rgb": { | |
"r": 131, | |
"g": 148, | |
"b": 184 | |
}, | |
"positionInBook": 924 | |
}, | |
{ | |
"code": "2137 C", | |
"name": null, | |
"rgb": { | |
"r": 110, | |
"g": 128, | |
"b": 169 | |
}, | |
"positionInBook": 925 | |
}, | |
{ | |
"code": "2138 C", | |
"name": null, | |
"rgb": { | |
"r": 100, | |
"g": 118, | |
"b": 146 | |
}, | |
"positionInBook": 926 | |
}, | |
{ | |
"code": "2139 C", | |
"name": null, | |
"rgb": { | |
"r": 77, | |
"g": 105, | |
"b": 149 | |
}, | |
"positionInBook": 927 | |
}, | |
{ | |
"code": "2140 C", | |
"name": null, | |
"rgb": { | |
"r": 57, | |
"g": 83, | |
"b": 130 | |
}, | |
"positionInBook": 928 | |
}, | |
{ | |
"code": "642 C", | |
"name": null, | |
"rgb": { | |
"r": 209, | |
"g": 221, | |
"b": 230 | |
}, | |
"positionInBook": 929 | |
}, | |
{ | |
"code": "643 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 214, | |
"b": 227 | |
}, | |
"positionInBook": 930 | |
}, | |
{ | |
"code": "644 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 184, | |
"b": 211 | |
}, | |
"positionInBook": 931 | |
}, | |
{ | |
"code": "645 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 161, | |
"b": 196 | |
}, | |
"positionInBook": 932 | |
}, | |
{ | |
"code": "646 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 138, | |
"b": 180 | |
}, | |
"positionInBook": 933 | |
}, | |
{ | |
"code": "647 C", | |
"name": null, | |
"rgb": { | |
"r": 35, | |
"g": 97, | |
"b": 146 | |
}, | |
"positionInBook": 934 | |
}, | |
{ | |
"code": "648 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 46, | |
"b": 93 | |
}, | |
"positionInBook": 935 | |
}, | |
{ | |
"code": "649 C", | |
"name": null, | |
"rgb": { | |
"r": 219, | |
"g": 226, | |
"b": 233 | |
}, | |
"positionInBook": 936 | |
}, | |
{ | |
"code": "650 C", | |
"name": null, | |
"rgb": { | |
"r": 206, | |
"g": 217, | |
"b": 229 | |
}, | |
"positionInBook": 937 | |
}, | |
{ | |
"code": "651 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 188, | |
"b": 214 | |
}, | |
"positionInBook": 938 | |
}, | |
{ | |
"code": "652 C", | |
"name": null, | |
"rgb": { | |
"r": 125, | |
"g": 156, | |
"b": 192 | |
}, | |
"positionInBook": 939 | |
}, | |
{ | |
"code": "653 C", | |
"name": null, | |
"rgb": { | |
"r": 50, | |
"g": 98, | |
"b": 149 | |
}, | |
"positionInBook": 940 | |
}, | |
{ | |
"code": "654 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 58, | |
"b": 112 | |
}, | |
"positionInBook": 941 | |
}, | |
{ | |
"code": "655 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 37, | |
"b": 84 | |
}, | |
"positionInBook": 942 | |
}, | |
{ | |
"code": "656 C", | |
"name": null, | |
"rgb": { | |
"r": 221, | |
"g": 229, | |
"b": 237 | |
}, | |
"positionInBook": 943 | |
}, | |
{ | |
"code": "657 C", | |
"name": null, | |
"rgb": { | |
"r": 200, | |
"g": 216, | |
"b": 235 | |
}, | |
"positionInBook": 944 | |
}, | |
{ | |
"code": "658 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 201, | |
"b": 232 | |
}, | |
"positionInBook": 945 | |
}, | |
{ | |
"code": "659 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 164, | |
"b": 219 | |
}, | |
"positionInBook": 946 | |
}, | |
{ | |
"code": "660 C", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 126, | |
"b": 201 | |
}, | |
"positionInBook": 947 | |
}, | |
{ | |
"code": "661 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 53, | |
"b": 148 | |
}, | |
"positionInBook": 948 | |
}, | |
{ | |
"code": "662 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 26, | |
"b": 112 | |
}, | |
"positionInBook": 949 | |
}, | |
{ | |
"code": "2127 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 201, | |
"b": 225 | |
}, | |
"positionInBook": 950 | |
}, | |
{ | |
"code": "2128 C", | |
"name": null, | |
"rgb": { | |
"r": 152, | |
"g": 182, | |
"b": 228 | |
}, | |
"positionInBook": 951 | |
}, | |
{ | |
"code": "2129 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 141, | |
"b": 218 | |
}, | |
"positionInBook": 952 | |
}, | |
{ | |
"code": "2130 C", | |
"name": null, | |
"rgb": { | |
"r": 85, | |
"g": 118, | |
"b": 209 | |
}, | |
"positionInBook": 953 | |
}, | |
{ | |
"code": "2131 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 90, | |
"b": 189 | |
}, | |
"positionInBook": 954 | |
}, | |
{ | |
"code": "2132 C", | |
"name": null, | |
"rgb": { | |
"r": 8, | |
"g": 87, | |
"b": 195 | |
}, | |
"positionInBook": 955 | |
}, | |
{ | |
"code": "2133 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 87, | |
"b": 165 | |
}, | |
"positionInBook": 956 | |
}, | |
{ | |
"code": "7450 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 197, | |
"b": 219 | |
}, | |
"positionInBook": 957 | |
}, | |
{ | |
"code": "7451 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 171, | |
"b": 227 | |
}, | |
"positionInBook": 958 | |
}, | |
{ | |
"code": "7452 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 148, | |
"b": 221 | |
}, | |
"positionInBook": 959 | |
}, | |
{ | |
"code": "7453 C", | |
"name": null, | |
"rgb": { | |
"r": 124, | |
"g": 166, | |
"b": 222 | |
}, | |
"positionInBook": 960 | |
}, | |
{ | |
"code": "7454 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 143, | |
"b": 180 | |
}, | |
"positionInBook": 961 | |
}, | |
{ | |
"code": "7455 C", | |
"name": null, | |
"rgb": { | |
"r": 58, | |
"g": 93, | |
"b": 174 | |
}, | |
"positionInBook": 962 | |
}, | |
{ | |
"code": "7456 C", | |
"name": null, | |
"rgb": { | |
"r": 96, | |
"g": 110, | |
"b": 178 | |
}, | |
"positionInBook": 963 | |
}, | |
{ | |
"code": "2120 C", | |
"name": null, | |
"rgb": { | |
"r": 190, | |
"g": 202, | |
"b": 233 | |
}, | |
"positionInBook": 964 | |
}, | |
{ | |
"code": "2121 C", | |
"name": null, | |
"rgb": { | |
"r": 143, | |
"g": 172, | |
"b": 216 | |
}, | |
"positionInBook": 965 | |
}, | |
{ | |
"code": "2122 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 174, | |
"b": 228 | |
}, | |
"positionInBook": 966 | |
}, | |
{ | |
"code": "2123 C", | |
"name": null, | |
"rgb": { | |
"r": 122, | |
"g": 147, | |
"b": 220 | |
}, | |
"positionInBook": 967 | |
}, | |
{ | |
"code": "2124 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 123, | |
"b": 212 | |
}, | |
"positionInBook": 968 | |
}, | |
{ | |
"code": "2125 C", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 97, | |
"b": 200 | |
}, | |
"positionInBook": 969 | |
}, | |
{ | |
"code": "2126 C", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 58, | |
"b": 178 | |
}, | |
"positionInBook": 970 | |
}, | |
{ | |
"code": "2706 C", | |
"name": null, | |
"rgb": { | |
"r": 203, | |
"g": 211, | |
"b": 234 | |
}, | |
"positionInBook": 971 | |
}, | |
{ | |
"code": "2716 C", | |
"name": null, | |
"rgb": { | |
"r": 159, | |
"g": 174, | |
"b": 229 | |
}, | |
"positionInBook": 972 | |
}, | |
{ | |
"code": "2726 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 92, | |
"b": 199 | |
}, | |
"positionInBook": 973 | |
}, | |
{ | |
"code": "2736 C", | |
"name": null, | |
"rgb": { | |
"r": 30, | |
"g": 34, | |
"b": 170 | |
}, | |
"positionInBook": 974 | |
}, | |
{ | |
"code": "2746 C", | |
"name": null, | |
"rgb": { | |
"r": 23, | |
"g": 28, | |
"b": 143 | |
}, | |
"positionInBook": 975 | |
}, | |
{ | |
"code": "2756 C", | |
"name": null, | |
"rgb": { | |
"r": 21, | |
"g": 31, | |
"b": 109 | |
}, | |
"positionInBook": 976 | |
}, | |
{ | |
"code": "2766 C", | |
"name": null, | |
"rgb": { | |
"r": 20, | |
"g": 27, | |
"b": 77 | |
}, | |
"positionInBook": 977 | |
}, | |
{ | |
"code": "2708 C", | |
"name": null, | |
"rgb": { | |
"r": 184, | |
"g": 204, | |
"b": 234 | |
}, | |
"positionInBook": 978 | |
}, | |
{ | |
"code": "2718 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 136, | |
"b": 218 | |
}, | |
"positionInBook": 979 | |
}, | |
{ | |
"code": "2728 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 71, | |
"b": 187 | |
}, | |
"positionInBook": 980 | |
}, | |
{ | |
"code": "2738 C", | |
"name": null, | |
"rgb": { | |
"r": 6, | |
"g": 3, | |
"b": 141 | |
}, | |
"positionInBook": 981 | |
}, | |
{ | |
"code": "2748 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 24, | |
"b": 113 | |
}, | |
"positionInBook": 982 | |
}, | |
{ | |
"code": "2758 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 30, | |
"b": 98 | |
}, | |
"positionInBook": 983 | |
}, | |
{ | |
"code": "2768 C", | |
"name": null, | |
"rgb": { | |
"r": 7, | |
"g": 29, | |
"b": 73 | |
}, | |
"positionInBook": 984 | |
}, | |
{ | |
"code": "2707 C", | |
"name": null, | |
"rgb": { | |
"r": 195, | |
"g": 215, | |
"b": 238 | |
}, | |
"positionInBook": 985 | |
}, | |
{ | |
"code": "2717 C", | |
"name": null, | |
"rgb": { | |
"r": 167, | |
"g": 198, | |
"b": 237 | |
}, | |
"positionInBook": 986 | |
}, | |
{ | |
"code": "2727 C", | |
"name": null, | |
"rgb": { | |
"r": 48, | |
"g": 127, | |
"b": 226 | |
}, | |
"positionInBook": 987 | |
}, | |
{ | |
"code": "Blue 072 C", | |
"name": null, | |
"rgb": { | |
"r": 16, | |
"g": 6, | |
"b": 159 | |
}, | |
"positionInBook": 988 | |
}, | |
{ | |
"code": "2747 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 26, | |
"b": 114 | |
}, | |
"positionInBook": 989 | |
}, | |
{ | |
"code": "2757 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 30, | |
"b": 96 | |
}, | |
"positionInBook": 990 | |
}, | |
{ | |
"code": "2767 C", | |
"name": null, | |
"rgb": { | |
"r": 19, | |
"g": 41, | |
"b": 75 | |
}, | |
"positionInBook": 991 | |
}, | |
{ | |
"code": "277 C", | |
"name": null, | |
"rgb": { | |
"r": 171, | |
"g": 202, | |
"b": 233 | |
}, | |
"positionInBook": 992 | |
}, | |
{ | |
"code": "278 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 184, | |
"b": 232 | |
}, | |
"positionInBook": 993 | |
}, | |
{ | |
"code": "279 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 143, | |
"b": 222 | |
}, | |
"positionInBook": 994 | |
}, | |
{ | |
"code": "Reflex Blue C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 20, | |
"b": 137 | |
}, | |
"positionInBook": 995 | |
}, | |
{ | |
"code": "280 C", | |
"name": null, | |
"rgb": { | |
"r": 1, | |
"g": 33, | |
"b": 105 | |
}, | |
"positionInBook": 996 | |
}, | |
{ | |
"code": "281 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 32, | |
"b": 91 | |
}, | |
"positionInBook": 997 | |
}, | |
{ | |
"code": "282 C", | |
"name": null, | |
"rgb": { | |
"r": 4, | |
"g": 30, | |
"b": 66 | |
}, | |
"positionInBook": 998 | |
}, | |
{ | |
"code": "283 C", | |
"name": null, | |
"rgb": { | |
"r": 146, | |
"g": 193, | |
"b": 233 | |
}, | |
"positionInBook": 999 | |
}, | |
{ | |
"code": "284 C", | |
"name": null, | |
"rgb": { | |
"r": 108, | |
"g": 172, | |
"b": 228 | |
}, | |
"positionInBook": 1000 | |
}, | |
{ | |
"code": "285 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 114, | |
"b": 206 | |
}, | |
"positionInBook": 1001 | |
}, | |
{ | |
"code": "286 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 50, | |
"b": 160 | |
}, | |
"positionInBook": 1002 | |
}, | |
{ | |
"code": "287 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 48, | |
"b": 135 | |
}, | |
"positionInBook": 1003 | |
}, | |
{ | |
"code": "288 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 45, | |
"b": 114 | |
}, | |
"positionInBook": 1004 | |
}, | |
{ | |
"code": "289 C", | |
"name": null, | |
"rgb": { | |
"r": 12, | |
"g": 35, | |
"b": 64 | |
}, | |
"positionInBook": 1005 | |
}, | |
{ | |
"code": "7681 C", | |
"name": null, | |
"rgb": { | |
"r": 148, | |
"g": 169, | |
"b": 203 | |
}, | |
"positionInBook": 1006 | |
}, | |
{ | |
"code": "7682 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 135, | |
"b": 183 | |
}, | |
"positionInBook": 1007 | |
}, | |
{ | |
"code": "7683 C", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 109, | |
"b": 169 | |
}, | |
"positionInBook": 1008 | |
}, | |
{ | |
"code": "7684 C", | |
"name": null, | |
"rgb": { | |
"r": 56, | |
"g": 94, | |
"b": 157 | |
}, | |
"positionInBook": 1009 | |
}, | |
{ | |
"code": "7685 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 86, | |
"b": 151 | |
}, | |
"positionInBook": 1010 | |
}, | |
{ | |
"code": "7686 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 79, | |
"b": 145 | |
}, | |
"positionInBook": 1011 | |
}, | |
{ | |
"code": "7687 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 66, | |
"b": 137 | |
}, | |
"positionInBook": 1012 | |
}, | |
{ | |
"code": "2141 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 190, | |
"b": 232 | |
}, | |
"positionInBook": 1013 | |
}, | |
{ | |
"code": "2142 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 173, | |
"b": 227 | |
}, | |
"positionInBook": 1014 | |
}, | |
{ | |
"code": "2143 C", | |
"name": null, | |
"rgb": { | |
"r": 61, | |
"g": 135, | |
"b": 203 | |
}, | |
"positionInBook": 1015 | |
}, | |
{ | |
"code": "2144 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 103, | |
"b": 185 | |
}, | |
"positionInBook": 1016 | |
}, | |
{ | |
"code": "2145 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 78, | |
"b": 168 | |
}, | |
"positionInBook": 1017 | |
}, | |
{ | |
"code": "2146 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 53, | |
"b": 142 | |
}, | |
"positionInBook": 1018 | |
}, | |
{ | |
"code": "2147 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 38, | |
"b": 119 | |
}, | |
"positionInBook": 1019 | |
}, | |
{ | |
"code": "545 C", | |
"name": null, | |
"rgb": { | |
"r": 198, | |
"g": 218, | |
"b": 231 | |
}, | |
"positionInBook": 1020 | |
}, | |
{ | |
"code": "544 C", | |
"name": null, | |
"rgb": { | |
"r": 189, | |
"g": 214, | |
"b": 230 | |
}, | |
"positionInBook": 1021 | |
}, | |
{ | |
"code": "543 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 200, | |
"b": 225 | |
}, | |
"positionInBook": 1022 | |
}, | |
{ | |
"code": "542 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 175, | |
"b": 212 | |
}, | |
"positionInBook": 1023 | |
}, | |
{ | |
"code": "541 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 60, | |
"b": 113 | |
}, | |
"positionInBook": 1024 | |
}, | |
{ | |
"code": "540 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 48, | |
"b": 87 | |
}, | |
"positionInBook": 1025 | |
}, | |
{ | |
"code": "539 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 38, | |
"b": 58 | |
}, | |
"positionInBook": 1026 | |
}, | |
{ | |
"code": "290 C", | |
"name": null, | |
"rgb": { | |
"r": 185, | |
"g": 217, | |
"b": 235 | |
}, | |
"positionInBook": 1027 | |
}, | |
{ | |
"code": "291 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 203, | |
"b": 235 | |
}, | |
"positionInBook": 1028 | |
}, | |
{ | |
"code": "292 C", | |
"name": null, | |
"rgb": { | |
"r": 105, | |
"g": 179, | |
"b": 231 | |
}, | |
"positionInBook": 1029 | |
}, | |
{ | |
"code": "293 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 61, | |
"b": 165 | |
}, | |
"positionInBook": 1030 | |
}, | |
{ | |
"code": "294 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 47, | |
"b": 108 | |
}, | |
"positionInBook": 1031 | |
}, | |
{ | |
"code": "295 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 40, | |
"b": 85 | |
}, | |
"positionInBook": 1032 | |
}, | |
{ | |
"code": "296 C", | |
"name": null, | |
"rgb": { | |
"r": 5, | |
"g": 28, | |
"b": 44 | |
}, | |
"positionInBook": 1033 | |
}, | |
{ | |
"code": "2905 C", | |
"name": null, | |
"rgb": { | |
"r": 141, | |
"g": 200, | |
"b": 232 | |
}, | |
"positionInBook": 1034 | |
}, | |
{ | |
"code": "2915 C", | |
"name": null, | |
"rgb": { | |
"r": 98, | |
"g": 181, | |
"b": 229 | |
}, | |
"positionInBook": 1035 | |
}, | |
{ | |
"code": "2925 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 156, | |
"b": 222 | |
}, | |
"positionInBook": 1036 | |
}, | |
{ | |
"code": "2935 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 87, | |
"b": 183 | |
}, | |
"positionInBook": 1037 | |
}, | |
{ | |
"code": "2945 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 76, | |
"b": 151 | |
}, | |
"positionInBook": 1038 | |
}, | |
{ | |
"code": "2955 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 56, | |
"b": 101 | |
}, | |
"positionInBook": 1039 | |
}, | |
{ | |
"code": "2965 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 38, | |
"b": 62 | |
}, | |
"positionInBook": 1040 | |
}, | |
{ | |
"code": "2169 C", | |
"name": null, | |
"rgb": { | |
"r": 129, | |
"g": 176, | |
"b": 210 | |
}, | |
"positionInBook": 1041 | |
}, | |
{ | |
"code": "2170 C", | |
"name": null, | |
"rgb": { | |
"r": 95, | |
"g": 155, | |
"b": 198 | |
}, | |
"positionInBook": 1042 | |
}, | |
{ | |
"code": "2171 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 159, | |
"b": 223 | |
}, | |
"positionInBook": 1043 | |
}, | |
{ | |
"code": "2172 C", | |
"name": null, | |
"rgb": { | |
"r": 20, | |
"g": 123, | |
"b": 209 | |
}, | |
"positionInBook": 1044 | |
}, | |
{ | |
"code": "2173 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 132, | |
"b": 213 | |
}, | |
"positionInBook": 1045 | |
}, | |
{ | |
"code": "2174 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 206 | |
}, | |
"positionInBook": 1046 | |
}, | |
{ | |
"code": "2175 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 106, | |
"b": 198 | |
}, | |
"positionInBook": 1047 | |
}, | |
{ | |
"code": "2381 C", | |
"name": null, | |
"rgb": { | |
"r": 94, | |
"g": 147, | |
"b": 219 | |
}, | |
"positionInBook": 1048 | |
}, | |
{ | |
"code": "2382 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 138, | |
"b": 216 | |
}, | |
"positionInBook": 1049 | |
}, | |
{ | |
"code": "2383 C", | |
"name": null, | |
"rgb": { | |
"r": 39, | |
"g": 116, | |
"b": 174 | |
}, | |
"positionInBook": 1050 | |
}, | |
{ | |
"code": "2384 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 97, | |
"b": 160 | |
}, | |
"positionInBook": 1051 | |
}, | |
{ | |
"code": "2386 C", | |
"name": null, | |
"rgb": { | |
"r": 45, | |
"g": 104, | |
"b": 196 | |
}, | |
"positionInBook": 1052 | |
}, | |
{ | |
"code": "2387 C", | |
"name": null, | |
"rgb": { | |
"r": 7, | |
"g": 98, | |
"b": 200 | |
}, | |
"positionInBook": 1053 | |
}, | |
{ | |
"code": "2388 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 80, | |
"b": 181 | |
}, | |
"positionInBook": 1054 | |
}, | |
{ | |
"code": "297 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 197, | |
"b": 232 | |
}, | |
"positionInBook": 1055 | |
}, | |
{ | |
"code": "298 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 182, | |
"b": 230 | |
}, | |
"positionInBook": 1056 | |
}, | |
{ | |
"code": "299 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 163, | |
"b": 224 | |
}, | |
"positionInBook": 1057 | |
}, | |
{ | |
"code": "300 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 94, | |
"b": 184 | |
}, | |
"positionInBook": 1058 | |
}, | |
{ | |
"code": "301 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 75, | |
"b": 135 | |
}, | |
"positionInBook": 1059 | |
}, | |
{ | |
"code": "302 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 59, | |
"b": 92 | |
}, | |
"positionInBook": 1060 | |
}, | |
{ | |
"code": "303 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 42, | |
"b": 58 | |
}, | |
"positionInBook": 1061 | |
}, | |
{ | |
"code": "7688 C", | |
"name": null, | |
"rgb": { | |
"r": 70, | |
"g": 152, | |
"b": 202 | |
}, | |
"positionInBook": 1062 | |
}, | |
{ | |
"code": "7689 C", | |
"name": null, | |
"rgb": { | |
"r": 41, | |
"g": 143, | |
"b": 194 | |
}, | |
"positionInBook": 1063 | |
}, | |
{ | |
"code": "7690 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 168 | |
}, | |
"positionInBook": 1064 | |
}, | |
{ | |
"code": "7691 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 98, | |
"b": 152 | |
}, | |
"positionInBook": 1065 | |
}, | |
{ | |
"code": "7692 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 86, | |
"b": 135 | |
}, | |
"positionInBook": 1066 | |
}, | |
{ | |
"code": "7693 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 73, | |
"b": 118 | |
}, | |
"positionInBook": 1067 | |
}, | |
{ | |
"code": "7694 C", | |
"name": null, | |
"rgb": { | |
"r": 1, | |
"g": 66, | |
"b": 106 | |
}, | |
"positionInBook": 1068 | |
}, | |
{ | |
"code": "2148 C", | |
"name": null, | |
"rgb": { | |
"r": 97, | |
"g": 145, | |
"b": 180 | |
}, | |
"positionInBook": 1069 | |
}, | |
{ | |
"code": "2149 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 130, | |
"b": 168 | |
}, | |
"positionInBook": 1070 | |
}, | |
{ | |
"code": "2150 C", | |
"name": null, | |
"rgb": { | |
"r": 54, | |
"g": 116, | |
"b": 157 | |
}, | |
"positionInBook": 1071 | |
}, | |
{ | |
"code": "2151 C", | |
"name": null, | |
"rgb": { | |
"r": 37, | |
"g": 107, | |
"b": 162 | |
}, | |
"positionInBook": 1072 | |
}, | |
{ | |
"code": "2152 C", | |
"name": null, | |
"rgb": { | |
"r": 26, | |
"g": 101, | |
"b": 143 | |
}, | |
"positionInBook": 1073 | |
}, | |
{ | |
"code": "2153 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 86, | |
"b": 126 | |
}, | |
"positionInBook": 1074 | |
}, | |
{ | |
"code": "2154 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 70, | |
"b": 128 | |
}, | |
"positionInBook": 1075 | |
}, | |
{ | |
"code": "2183 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 146, | |
"b": 189 | |
}, | |
"positionInBook": 1076 | |
}, | |
{ | |
"code": "2184 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 132, | |
"b": 212 | |
}, | |
"positionInBook": 1077 | |
}, | |
{ | |
"code": "2185 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 165 | |
}, | |
"positionInBook": 1078 | |
}, | |
{ | |
"code": "2186 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 73, | |
"b": 134 | |
}, | |
"positionInBook": 1079 | |
}, | |
{ | |
"code": "2187 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 70, | |
"b": 119 | |
}, | |
"positionInBook": 1080 | |
}, | |
{ | |
"code": "2188 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 66, | |
"b": 106 | |
}, | |
"positionInBook": 1081 | |
}, | |
{ | |
"code": "2189 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 51, | |
"b": 73 | |
}, | |
"positionInBook": 1082 | |
}, | |
{ | |
"code": "2975 C", | |
"name": null, | |
"rgb": { | |
"r": 153, | |
"g": 214, | |
"b": 234 | |
}, | |
"positionInBook": 1083 | |
}, | |
{ | |
"code": "2985 C", | |
"name": null, | |
"rgb": { | |
"r": 91, | |
"g": 194, | |
"b": 231 | |
}, | |
"positionInBook": 1084 | |
}, | |
{ | |
"code": "2995 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 169, | |
"b": 224 | |
}, | |
"positionInBook": 1085 | |
}, | |
{ | |
"code": "3005 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 200 | |
}, | |
"positionInBook": 1086 | |
}, | |
{ | |
"code": "3015 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 98, | |
"b": 155 | |
}, | |
"positionInBook": 1087 | |
}, | |
{ | |
"code": "3025 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 79, | |
"b": 113 | |
}, | |
"positionInBook": 1088 | |
}, | |
{ | |
"code": "3035 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 62, | |
"b": 81 | |
}, | |
"positionInBook": 1089 | |
}, | |
{ | |
"code": "2190 C", | |
"name": null, | |
"rgb": { | |
"r": 86, | |
"g": 183, | |
"b": 230 | |
}, | |
"positionInBook": 1090 | |
}, | |
{ | |
"code": "2191 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 163, | |
"b": 225 | |
}, | |
"positionInBook": 1091 | |
}, | |
{ | |
"code": "2192 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 145, | |
"b": 218 | |
}, | |
"positionInBook": 1092 | |
}, | |
{ | |
"code": "2193 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 144, | |
"b": 218 | |
}, | |
"positionInBook": 1093 | |
}, | |
{ | |
"code": "2194 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 134, | |
"b": 214 | |
}, | |
"positionInBook": 1094 | |
}, | |
{ | |
"code": "2195 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 207 | |
}, | |
"positionInBook": 1095 | |
}, | |
{ | |
"code": "2196 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 105, | |
"b": 177 | |
}, | |
"positionInBook": 1096 | |
}, | |
{ | |
"code": "7695 C", | |
"name": null, | |
"rgb": { | |
"r": 123, | |
"g": 167, | |
"b": 188 | |
}, | |
"positionInBook": 1097 | |
}, | |
{ | |
"code": "7696 C", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 153, | |
"b": 174 | |
}, | |
"positionInBook": 1098 | |
}, | |
{ | |
"code": "7697 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 135, | |
"b": 160 | |
}, | |
"positionInBook": 1099 | |
}, | |
{ | |
"code": "7698 C", | |
"name": null, | |
"rgb": { | |
"r": 65, | |
"g": 116, | |
"b": 141 | |
}, | |
"positionInBook": 1100 | |
}, | |
{ | |
"code": "7699 C", | |
"name": null, | |
"rgb": { | |
"r": 52, | |
"g": 101, | |
"b": 127 | |
}, | |
"positionInBook": 1101 | |
}, | |
{ | |
"code": "7700 C", | |
"name": null, | |
"rgb": { | |
"r": 22, | |
"g": 92, | |
"b": 125 | |
}, | |
"positionInBook": 1102 | |
}, | |
{ | |
"code": "7701 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 87, | |
"b": 118 | |
}, | |
"positionInBook": 1103 | |
}, | |
{ | |
"code": "2176 C", | |
"name": null, | |
"rgb": { | |
"r": 166, | |
"g": 184, | |
"b": 193 | |
}, | |
"positionInBook": 1104 | |
}, | |
{ | |
"code": "2177 C", | |
"name": null, | |
"rgb": { | |
"r": 127, | |
"g": 160, | |
"b": 172 | |
}, | |
"positionInBook": 1105 | |
}, | |
{ | |
"code": "2178 C", | |
"name": null, | |
"rgb": { | |
"r": 107, | |
"g": 143, | |
"b": 156 | |
}, | |
"positionInBook": 1106 | |
}, | |
{ | |
"code": "2179 C", | |
"name": null, | |
"rgb": { | |
"r": 82, | |
"g": 122, | |
"b": 138 | |
}, | |
"positionInBook": 1107 | |
}, | |
{ | |
"code": "2180 C", | |
"name": null, | |
"rgb": { | |
"r": 63, | |
"g": 108, | |
"b": 125 | |
}, | |
"positionInBook": 1108 | |
}, | |
{ | |
"code": "2181 C", | |
"name": null, | |
"rgb": { | |
"r": 43, | |
"g": 91, | |
"b": 108 | |
}, | |
"positionInBook": 1109 | |
}, | |
{ | |
"code": "2182 C", | |
"name": null, | |
"rgb": { | |
"r": 23, | |
"g": 74, | |
"b": 91 | |
}, | |
"positionInBook": 1110 | |
}, | |
{ | |
"code": "2204 C", | |
"name": null, | |
"rgb": { | |
"r": 175, | |
"g": 205, | |
"b": 215 | |
}, | |
"positionInBook": 1111 | |
}, | |
{ | |
"code": "2205 C", | |
"name": null, | |
"rgb": { | |
"r": 137, | |
"g": 178, | |
"b": 196 | |
}, | |
"positionInBook": 1112 | |
}, | |
{ | |
"code": "2206 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 159, | |
"b": 181 | |
}, | |
"positionInBook": 1113 | |
}, | |
{ | |
"code": "2207 C", | |
"name": null, | |
"rgb": { | |
"r": 101, | |
"g": 154, | |
"b": 177 | |
}, | |
"positionInBook": 1114 | |
}, | |
{ | |
"code": "2208 C", | |
"name": null, | |
"rgb": { | |
"r": 84, | |
"g": 137, | |
"b": 163 | |
}, | |
"positionInBook": 1115 | |
}, | |
{ | |
"code": "2209 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 134, | |
"b": 160 | |
}, | |
"positionInBook": 1116 | |
}, | |
{ | |
"code": "2210 C", | |
"name": null, | |
"rgb": { | |
"r": 7, | |
"g": 79, | |
"b": 113 | |
}, | |
"positionInBook": 1117 | |
}, | |
{ | |
"code": "7457 C", | |
"name": null, | |
"rgb": { | |
"r": 187, | |
"g": 221, | |
"b": 230 | |
}, | |
"positionInBook": 1118 | |
}, | |
{ | |
"code": "7458 C", | |
"name": null, | |
"rgb": { | |
"r": 113, | |
"g": 178, | |
"b": 201 | |
}, | |
"positionInBook": 1119 | |
}, | |
{ | |
"code": "7459 C", | |
"name": null, | |
"rgb": { | |
"r": 66, | |
"g": 152, | |
"b": 181 | |
}, | |
"positionInBook": 1120 | |
}, | |
{ | |
"code": "7460 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 134, | |
"b": 191 | |
}, | |
"positionInBook": 1121 | |
}, | |
{ | |
"code": "7461 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 125, | |
"b": 186 | |
}, | |
"positionInBook": 1122 | |
}, | |
{ | |
"code": "7462 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 85, | |
"b": 140 | |
}, | |
"positionInBook": 1123 | |
}, | |
{ | |
"code": "7463 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 43, | |
"b": 73 | |
}, | |
"positionInBook": 1124 | |
}, | |
{ | |
"code": "304 C", | |
"name": null, | |
"rgb": { | |
"r": 154, | |
"g": 219, | |
"b": 232 | |
}, | |
"positionInBook": 1125 | |
}, | |
{ | |
"code": "305 C", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 203, | |
"b": 232 | |
}, | |
"positionInBook": 1126 | |
}, | |
{ | |
"code": "306 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 181, | |
"b": 226 | |
}, | |
"positionInBook": 1127 | |
}, | |
{ | |
"code": "Process Blue C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 133, | |
"b": 202 | |
}, | |
"positionInBook": 1128 | |
}, | |
{ | |
"code": "307 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 107, | |
"b": 166 | |
}, | |
"positionInBook": 1129 | |
}, | |
{ | |
"code": "308 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 88, | |
"b": 124 | |
}, | |
"positionInBook": 1130 | |
}, | |
{ | |
"code": "309 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 59, | |
"b": 73 | |
}, | |
"positionInBook": 1131 | |
}, | |
{ | |
"code": "635 C", | |
"name": null, | |
"rgb": { | |
"r": 164, | |
"g": 219, | |
"b": 232 | |
}, | |
"positionInBook": 1132 | |
}, | |
{ | |
"code": "636 C", | |
"name": null, | |
"rgb": { | |
"r": 139, | |
"g": 211, | |
"b": 230 | |
}, | |
"positionInBook": 1133 | |
}, | |
{ | |
"code": "637 C", | |
"name": null, | |
"rgb": { | |
"r": 78, | |
"g": 195, | |
"b": 224 | |
}, | |
"positionInBook": 1134 | |
}, | |
{ | |
"code": "638 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 175, | |
"b": 215 | |
}, | |
"positionInBook": 1135 | |
}, | |
{ | |
"code": "639 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 149, | |
"b": 200 | |
}, | |
"positionInBook": 1136 | |
}, | |
{ | |
"code": "640 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 130, | |
"b": 186 | |
}, | |
"positionInBook": 1137 | |
}, | |
{ | |
"code": "641 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 103, | |
"b": 160 | |
}, | |
"positionInBook": 1138 | |
}, | |
{ | |
"code": "2389 C", | |
"name": null, | |
"rgb": { | |
"r": 76, | |
"g": 159, | |
"b": 200 | |
}, | |
"positionInBook": 1139 | |
}, | |
{ | |
"code": "2390 C", | |
"name": null, | |
"rgb": { | |
"r": 7, | |
"g": 124, | |
"b": 171 | |
}, | |
"positionInBook": 1140 | |
}, | |
{ | |
"code": "2391 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 129, | |
"b": 166 | |
}, | |
"positionInBook": 1141 | |
}, | |
{ | |
"code": "2392 C", | |
"name": null, | |
"rgb": { | |
"r": 22, | |
"g": 104, | |
"b": 134 | |
}, | |
"positionInBook": 1142 | |
}, | |
{ | |
"code": "2393 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 146, | |
"b": 203 | |
}, | |
"positionInBook": 1143 | |
}, | |
{ | |
"code": "2394 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 139, | |
"b": 206 | |
}, | |
"positionInBook": 1144 | |
}, | |
{ | |
"code": "2396 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 153, | |
"b": 178 | |
}, | |
"positionInBook": 1145 | |
}, | |
{ | |
"code": "7702 C", | |
"name": null, | |
"rgb": { | |
"r": 72, | |
"g": 169, | |
"b": 197 | |
}, | |
"positionInBook": 1146 | |
}, | |
{ | |
"code": "7703 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 156, | |
"b": 189 | |
}, | |
"positionInBook": 1147 | |
}, | |
{ | |
"code": "7704 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 133, | |
"b": 173 | |
}, | |
"positionInBook": 1148 | |
}, | |
{ | |
"code": "7705 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 112, | |
"b": 150 | |
}, | |
"positionInBook": 1149 | |
}, | |
{ | |
"code": "7706 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 106, | |
"b": 142 | |
}, | |
"positionInBook": 1150 | |
}, | |
{ | |
"code": "7707 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 97, | |
"b": 127 | |
}, | |
"positionInBook": 1151 | |
}, | |
{ | |
"code": "7708 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 86, | |
"b": 112 | |
}, | |
"positionInBook": 1152 | |
}, | |
{ | |
"code": "2197 C", | |
"name": null, | |
"rgb": { | |
"r": 116, | |
"g": 210, | |
"b": 231 | |
}, | |
"positionInBook": 1153 | |
}, | |
{ | |
"code": "2198 C", | |
"name": null, | |
"rgb": { | |
"r": 74, | |
"g": 201, | |
"b": 227 | |
}, | |
"positionInBook": 1154 | |
}, | |
{ | |
"code": "2199 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 187, | |
"b": 220 | |
}, | |
"positionInBook": 1155 | |
}, | |
{ | |
"code": "2200 C", | |
"name": null, | |
"rgb": { | |
"r": 5, | |
"g": 169, | |
"b": 199 | |
}, | |
"positionInBook": 1156 | |
}, | |
{ | |
"code": "2201 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 174, | |
"b": 214 | |
}, | |
"positionInBook": 1157 | |
}, | |
{ | |
"code": "2202 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 165, | |
"b": 223 | |
}, | |
"positionInBook": 1158 | |
}, | |
{ | |
"code": "2203 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 135, | |
"b": 174 | |
}, | |
"positionInBook": 1159 | |
}, | |
{ | |
"code": "628 C", | |
"name": null, | |
"rgb": { | |
"r": 183, | |
"g": 221, | |
"b": 225 | |
}, | |
"positionInBook": 1160 | |
}, | |
{ | |
"code": "629 C", | |
"name": null, | |
"rgb": { | |
"r": 155, | |
"g": 211, | |
"b": 221 | |
}, | |
"positionInBook": 1161 | |
}, | |
{ | |
"code": "630 C", | |
"name": null, | |
"rgb": { | |
"r": 119, | |
"g": 197, | |
"b": 213 | |
}, | |
"positionInBook": 1162 | |
}, | |
{ | |
"code": "631 C", | |
"name": null, | |
"rgb": { | |
"r": 62, | |
"g": 177, | |
"b": 200 | |
}, | |
"positionInBook": 1163 | |
}, | |
{ | |
"code": "632 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 147, | |
"b": 178 | |
}, | |
"positionInBook": 1164 | |
}, | |
{ | |
"code": "633 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 115, | |
"b": 150 | |
}, | |
"positionInBook": 1165 | |
}, | |
{ | |
"code": "634 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 95, | |
"b": 131 | |
}, | |
"positionInBook": 1166 | |
}, | |
{ | |
"code": "310 C", | |
"name": null, | |
"rgb": { | |
"r": 106, | |
"g": 209, | |
"b": 227 | |
}, | |
"positionInBook": 1167 | |
}, | |
{ | |
"code": "311 C", | |
"name": null, | |
"rgb": { | |
"r": 5, | |
"g": 195, | |
"b": 221 | |
}, | |
"positionInBook": 1168 | |
}, | |
{ | |
"code": "312 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 169, | |
"b": 206 | |
}, | |
"positionInBook": 1169 | |
}, | |
{ | |
"code": "313 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 146, | |
"b": 188 | |
}, | |
"positionInBook": 1170 | |
}, | |
{ | |
"code": "314 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 127, | |
"b": 163 | |
}, | |
"positionInBook": 1171 | |
}, | |
{ | |
"code": "315 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 103, | |
"b": 127 | |
}, | |
"positionInBook": 1172 | |
}, | |
{ | |
"code": "316 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 72, | |
"b": 81 | |
}, | |
"positionInBook": 1173 | |
}, | |
{ | |
"code": "3105 C", | |
"name": null, | |
"rgb": { | |
"r": 103, | |
"g": 210, | |
"b": 223 | |
}, | |
"positionInBook": 1174 | |
}, | |
{ | |
"code": "3115 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 193, | |
"b": 212 | |
}, | |
"positionInBook": 1175 | |
}, | |
{ | |
"code": "3125 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 174, | |
"b": 199 | |
}, | |
"positionInBook": 1176 | |
}, | |
{ | |
"code": "3135 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 142, | |
"b": 170 | |
}, | |
"positionInBook": 1177 | |
}, | |
{ | |
"code": "3145 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 119, | |
"b": 139 | |
}, | |
"positionInBook": 1178 | |
}, | |
{ | |
"code": "3155 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 98, | |
"b": 113 | |
}, | |
"positionInBook": 1179 | |
}, | |
{ | |
"code": "3165 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 79, | |
"b": 89 | |
}, | |
"positionInBook": 1180 | |
}, | |
{ | |
"code": "7709 C", | |
"name": null, | |
"rgb": { | |
"r": 99, | |
"g": 177, | |
"b": 188 | |
}, | |
"positionInBook": 1181 | |
}, | |
{ | |
"code": "7710 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 167, | |
"b": 181 | |
}, | |
"positionInBook": 1182 | |
}, | |
{ | |
"code": "7711 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 151, | |
"b": 169 | |
}, | |
"positionInBook": 1183 | |
}, | |
{ | |
"code": "7712 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 133, | |
"b": 155 | |
}, | |
"positionInBook": 1184 | |
}, | |
{ | |
"code": "7713 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 125, | |
"b": 138 | |
}, | |
"positionInBook": 1185 | |
}, | |
{ | |
"code": "7714 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 128 | |
}, | |
"positionInBook": 1186 | |
}, | |
{ | |
"code": "7715 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 98, | |
"b": 105 | |
}, | |
"positionInBook": 1187 | |
}, | |
{ | |
"code": "2218 C", | |
"name": null, | |
"rgb": { | |
"r": 114, | |
"g": 176, | |
"b": 189 | |
}, | |
"positionInBook": 1188 | |
}, | |
{ | |
"code": "2219 C", | |
"name": null, | |
"rgb": { | |
"r": 93, | |
"g": 163, | |
"b": 178 | |
}, | |
"positionInBook": 1189 | |
}, | |
{ | |
"code": "2220 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 151, | |
"b": 168 | |
}, | |
"positionInBook": 1190 | |
}, | |
{ | |
"code": "2221 C", | |
"name": null, | |
"rgb": { | |
"r": 45, | |
"g": 140, | |
"b": 158 | |
}, | |
"positionInBook": 1191 | |
}, | |
{ | |
"code": "2222 C", | |
"name": null, | |
"rgb": { | |
"r": 29, | |
"g": 130, | |
"b": 150 | |
}, | |
"positionInBook": 1192 | |
}, | |
{ | |
"code": "2223 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 120, | |
"b": 141 | |
}, | |
"positionInBook": 1193 | |
}, | |
{ | |
"code": "2224 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 105, | |
"b": 128 | |
}, | |
"positionInBook": 1194 | |
}, | |
{ | |
"code": "317 C", | |
"name": null, | |
"rgb": { | |
"r": 177, | |
"g": 228, | |
"b": 227 | |
}, | |
"positionInBook": 1195 | |
}, | |
{ | |
"code": "318 C", | |
"name": null, | |
"rgb": { | |
"r": 136, | |
"g": 219, | |
"b": 223 | |
}, | |
"positionInBook": 1196 | |
}, | |
{ | |
"code": "319 C", | |
"name": null, | |
"rgb": { | |
"r": 44, | |
"g": 204, | |
"b": 211 | |
}, | |
"positionInBook": 1197 | |
}, | |
{ | |
"code": "320 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 156, | |
"b": 166 | |
}, | |
"positionInBook": 1198 | |
}, | |
{ | |
"code": "321 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 140, | |
"b": 149 | |
}, | |
"positionInBook": 1199 | |
}, | |
{ | |
"code": "322 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 115, | |
"b": 119 | |
}, | |
"positionInBook": 1200 | |
}, | |
{ | |
"code": "323 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 95, | |
"b": 97 | |
}, | |
"positionInBook": 1201 | |
}, | |
{ | |
"code": "2225 C", | |
"name": null, | |
"rgb": { | |
"r": 120, | |
"g": 213, | |
"b": 225 | |
}, | |
"positionInBook": 1202 | |
}, | |
{ | |
"code": "2226 C", | |
"name": null, | |
"rgb": { | |
"r": 60, | |
"g": 203, | |
"b": 218 | |
}, | |
"positionInBook": 1203 | |
}, | |
{ | |
"code": "2227 C", | |
"name": null, | |
"rgb": { | |
"r": 89, | |
"g": 190, | |
"b": 201 | |
}, | |
"positionInBook": 1204 | |
}, | |
{ | |
"code": "2228 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 165, | |
"b": 189 | |
}, | |
"positionInBook": 1205 | |
}, | |
{ | |
"code": "2229 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 156, | |
"b": 182 | |
}, | |
"positionInBook": 1206 | |
}, | |
{ | |
"code": "2230 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 140, | |
"b": 160 | |
}, | |
"positionInBook": 1207 | |
}, | |
{ | |
"code": "2231 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 124, | |
"b": 145 | |
}, | |
"positionInBook": 1208 | |
}, | |
{ | |
"code": "7464 C", | |
"name": null, | |
"rgb": { | |
"r": 160, | |
"g": 209, | |
"b": 202 | |
}, | |
"positionInBook": 1209 | |
}, | |
{ | |
"code": "7465 C", | |
"name": null, | |
"rgb": { | |
"r": 64, | |
"g": 193, | |
"b": 172 | |
}, | |
"positionInBook": 1210 | |
}, | |
{ | |
"code": "7466 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 176, | |
"b": 185 | |
}, | |
"positionInBook": 1211 | |
}, | |
{ | |
"code": "7467 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 163, | |
"b": 173 | |
}, | |
"positionInBook": 1212 | |
}, | |
{ | |
"code": "7468 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 115, | |
"b": 152 | |
}, | |
"positionInBook": 1213 | |
}, | |
{ | |
"code": "7469 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 95, | |
"b": 134 | |
}, | |
"positionInBook": 1214 | |
}, | |
{ | |
"code": "7470 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 90, | |
"b": 111 | |
}, | |
"positionInBook": 1215 | |
}, | |
{ | |
"code": "7471 C", | |
"name": null, | |
"rgb": { | |
"r": 126, | |
"g": 221, | |
"b": 211 | |
}, | |
"positionInBook": 1216 | |
}, | |
{ | |
"code": "7472 C", | |
"name": null, | |
"rgb": { | |
"r": 92, | |
"g": 184, | |
"b": 178 | |
}, | |
"positionInBook": 1217 | |
}, | |
{ | |
"code": "7473 C", | |
"name": null, | |
"rgb": { | |
"r": 39, | |
"g": 153, | |
"b": 137 | |
}, | |
"positionInBook": 1218 | |
}, | |
{ | |
"code": "7474 C", | |
"name": null, | |
"rgb": { | |
"r": 0, | |
"g": 118, | |
"b": 129 | |
}, | |
"positionInBook": 1219 | |
}, | |
{ | |
"code": "7475 C", | |
"name": null, | |
"rgb": { | |
"r": 71, | |
"g": 122, | |
"b": 123 | |
}, | |
"positionInBook": 1220 | |
}, | |
{ | |
"code": "7476 C", | |
"name": null, | |
"rgb": { | |
"r": 13, | |
"g": 82, | |
"b": 87 | |
}, | |
"positionInBook": 1221 | |
}, | |
{ | |
"code": "7477 C", | |
"name": null, | |
"rgb": { | |
"r": 36, | |
"g": 76, | |
"b": 90 | |
}, | |
"positionInBook": 1222 | |
}, | |
{ | |
"code": "2211 C", | |
"name": null, | |
"rgb": { | |
"r": 111, | |
"g": 155, | |
"b": 164 | |
}, | |
"positionInBook": 1223 | |
}, | |
{ | |
"code": "2212 C", | |
"name": null, | |
"rgb": { | |
"r": 80, | |
"g": 133, | |
"b": 144 | |
}, | |
"positionInBook": 1224 | |
}, | |
{ | |
"code": "2213 C", | |
"name": null, | |
"rgb": { | |
"r": 51, | |
"g": 113, | |
"b": 121 | |
}, | |
"p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment