{"id":2861,"date":"2020-05-07T08:50:26","date_gmt":"2020-05-06T23:50:26","guid":{"rendered":"http:\/\/taki-lab.site\/bocci\/?p=2861"},"modified":"2020-05-07T08:50:30","modified_gmt":"2020-05-06T23:50:30","slug":"%e3%80%90c%e3%80%91%e3%80%90%e3%83%94%e3%82%af%e3%83%ad%e3%82%b9%e3%80%91%e3%80%90altseed%e3%80%91%e3%82%b5%e3%82%a4%e3%82%ba%e5%a4%89%e6%9b%b4%e3%83%80%e3%82%a4%e3%82%a2%e3%83%ad%e3%82%b0%e3%81%aeui","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=2861","title":{"rendered":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u306eUI\u3092\u4f5c\u6210"},"content":{"rendered":"\n<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002<\/p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"Dq8WKYFEIh\"><a href=\"https:\/\/taki-lab.site\/bocci\/?p=2847\">\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u5927\u5e45\u306b\u4fee\u6b63<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u5927\u5e45\u306b\u4fee\u6b63&#8221; &#8212; \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" src=\"https:\/\/taki-lab.site\/bocci\/?p=2847&#038;embed=true#?secret=1DlAktAAzO#?secret=Dq8WKYFEIh\" data-secret=\"Dq8WKYFEIh\" width=\"474\" height=\"267\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089\u3002<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/takishita2nd\/Picross\">https:\/\/github.com\/takishita2nd\/Picross<\/a><\/p>\n\n\n\n<p>\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u306b\u30e9\u30d9\u30eb\u3068\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u3089\u306f\u65b0\u898f\u30af\u30e9\u30b9\u3067\u3059\u306d\u3002<\/p>\n\n\n\n<p>\u306a\u306e\u3067\u3001\u30e9\u30d9\u30eb\u30af\u30e9\u30b9\u3068\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u30af\u30e9\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class Label : ObjectBase\n{\n    private string _text;\n    private int fontOffsetX = 9;\n    private int fontOffsetY = 4;\n    private bool _isShow = false;\n\n    public Label(int x, int y, string text)\n    {\n        width = 128;\n        height = 32;\n        _x = x;\n        _y = y;\n        _text = text;\n\n        _valueText = new asd.TextObject2D();\n        _valueText.Text = _text;\n        _valueText.Font = null;\n        _valueText.Position = new asd.Vector2DF(_x + fontOffsetX, _y + fontOffsetY);\n    }\n\n    public void SetFontOffset(int x, int y)\n    {\n        fontOffsetX = x;\n        fontOffsetY = y;\n        _valueText.Position = new asd.Vector2DF(_x + fontOffsetX, _y + fontOffsetY);\n    }\n\n    public void Show()\n    {\n        _isShow = true;\n        _valueText.Font = Resource.getFont();\n    }\n\n    public void Hide()\n    {\n        _isShow = false; ;\n        _valueText.Font = null;\n    }\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>class TextBox : ObjectBase\n{\n    private string _text;\n    private int fontOffsetX = 9;\n    private int fontOffsetY = 4;\n    protected bool enable = true;\n    private Action _action = null;\n    private bool _isShow = false;\n\n    public TextBox(int x, int y, string text)\n    {\n        width = 128;\n        height = 32;\n        _x = x;\n        _y = y;\n        _text = text;\n\n        _backTexture = new asd.TextureObject2D();\n        _backTexture.Position = new asd.Vector2DF(_x, _y);\n\n        _valueText = new asd.TextObject2D();\n        _valueText.Text = _text;\n        _valueText.Font = null;\n        _valueText.Position = new asd.Vector2DF(_x + fontOffsetX, _y + fontOffsetY);\n    }\n\n    public void SetFontOffset(int x, int y)\n    {\n        fontOffsetX = x;\n        fontOffsetY = y;\n        _valueText.Position = new asd.Vector2DF(_x + fontOffsetX, _y + fontOffsetY);\n    }\n\n    public void UpdateTexture(asd.Vector2DF pos)\n    {\n        if (pos.X > _x &amp;&amp; pos.X &lt; _x + width\n            &amp;&amp; pos.Y > _y &amp;&amp; pos.Y &lt; _y + height)\n        {\n            _backTexture.Texture = Resource.getSelectedTextTexture();\n        }\n        else\n        {\n            _backTexture.Texture = Resource.getTextTexture();\n        }\n    }\n\n    public void Show()\n    {\n        _isShow = true;\n        _backTexture.Texture = Resource.getTextTexture();\n        _valueText.Font = Resource.getFont();\n    }\n\n    public void Hide()\n    {\n        _isShow = false; ;\n        _backTexture.Texture = null;\n        _valueText.Font = null;\n    }\n\n    public void SetAction(Action action)\n    {\n        _action = action;\n    }\n\n    public void SetEnable(bool enable)\n    {\n        this.enable = enable;\n    }\n\n    public virtual void OnClick()\n    {\n        if (enable)\n        {\n            if (_action != null)\n            {\n                _action.Invoke();\n            }\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<p>OnClick\u51e6\u7406\u306f\u5f8c\u3005\u4fee\u6b63\u3059\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3002<\/p>\n\n\n\n<p>\u305d\u3057\u3066\u3001\u307b\u3068\u3093\u3069\u306fButton\u30af\u30e9\u30b9\u306e\u30a2\u30ec\u30f3\u30b8\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u3092Dialog\u30af\u30e9\u30b9\u3067\u4f7f\u7528\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class Dialog\n{\n    private asd.TextureObject2D _texture;\n    private bool _isShow;\n    private Button _button = null;\n    private TextBox _rowText = null;\n    private TextBox _colText = null;\n    private Label _label1 = null;\n    private Label _label2 = null;\n    private int _x = 300;\n    private int _y = 300;\n    private int _width = 400;\n    private int _height = 200;\n    private Action _action = null;\n\n    public Dialog()\n    {\n        _isShow = false;\n\n        \/\/ \u78ba\u5b9a\u30dc\u30bf\u30f3\n        _button = new Button(436, 400, \"\u78ba\u5b9a\");\n        _button.SetFontOffset(46, 4);\n        _button.SetAction(() =>\n        {\n            if(_action != null)\n            {\n                _action.Invoke();\n            }\n        });\n        \/\/ \u30e9\u30d9\u30eb\n        _label1 = new Label(320, 330, \"\u2193\");\n        _label2 = new Label(490, 330, \"\u2192\");\n        \/\/ Row\u5165\u529b\u30a8\u30ea\u30a2\n        _rowText = new TextBox(350, 330, \"0\");\n        \/\/ Col\u5165\u529b\u30a8\u30ea\u30a2\n        _colText = new TextBox(520, 330, \"0\");\n\n        _texture = new asd.TextureObject2D();\n        _texture.Position = new asd.Vector2DF(_x, _y);\n    }\n\n    public void SetEngine()\n    {\n        asd.Engine.AddObject2D(_texture);\n        asd.Engine.AddObject2D(_label1.getTextObject());\n        asd.Engine.AddObject2D(_label2.getTextObject());\n        asd.Engine.AddObject2D(_rowText.getBackTexture());\n        asd.Engine.AddObject2D(_rowText.getTextObject());\n        asd.Engine.AddObject2D(_colText.getBackTexture());\n        asd.Engine.AddObject2D(_colText.getTextObject());\n        asd.Engine.AddObject2D(_button.getBackTexture());\n        asd.Engine.AddObject2D(_button.getTextObject());\n    }\n\n    public void SetAction(Action action)\n    {\n        _action = action;\n    }\n\n    public void Show()\n    {\n        _isShow = true;\n        _texture.Texture = Resource.getDialogTexture();\n        _label1.Show();\n        _label2.Show();\n        _rowText.Show();\n        _colText.Show();\n        _button.Show();\n    }\n\n    public void Hide()\n    {\n        _isShow = false;\n        _texture.Texture = null;\n        _label1.Hide();\n        _label2.Hide();\n        _rowText.Hide();\n        _colText.Hide();\n        _button.Hide();\n    }\n\n    public bool IsShow()\n    {\n        return _isShow;\n    }\n\n    public void UpdateTexture(asd.Vector2DF pos)\n    {\n        _rowText.UpdateTexture(pos);\n        _colText.UpdateTexture(pos);\n        _button.UpdateTexture(pos);\n    }<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"http:\/\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/20200507083158.mp4\"><\/video><\/figure>\n\n\n\n<p>UI\u81ea\u5206\u3067\u4f5c\u308b\u306e\u3063\u3066\u3081\u3093\u3069\u304f\u3055\u3044\u306d\u3002<\/p>\n\n\n\n<p>\u3053\u3093\u306a\u306e\u3082\u3046\u4e8c\u5ea6\u3068\u3084\u3089\u306a\u3044\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"\/\/blog.with2.net\/link\/?2023426:1010\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/03a6eee54039f74ded0b8f7548b1868f.png?w=474\" alt=\"\" title=\"\u30d1\u30bd\u30b3\u30f3\u30e9\u30f3\u30ad\u30f3\u30b0\"\/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 \u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089\u3002 https:\/\/github.com\/takishita2nd\/Picross \u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u306b\u30e9\u30d9\u30eb\u3068\u30c6\u30ad\u30b9\u30c8\u30dc\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u3002 \u3053\u308c\u3089\u306f\u65b0\u898f\u30af\u30e9\u30b9\u3067\u3059\u306d\u3002 \u306a &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=2861\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u306eUI\u3092\u4f5c\u6210<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[174,3],"tags":[184,137,189],"class_list":["post-2861","post","type-post","status-publish","format-standard","hentry","category-c","category-3","tag-altseed","tag-c","tag-189"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-K9","jetpack-related-posts":[{"id":2841,"url":"https:\/\/taki-lab.site\/bocci\/?p=2841","url_meta":{"origin":2861,"position":0},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b","author":"taki","date":"2020\u5e745\u67085\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2831 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/067e0be3be17eadf9945cd7b837b0c1d.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/067e0be3be17eadf9945cd7b837b0c1d.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/067e0be3be17eadf9945cd7b837b0c1d.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/067e0be3be17eadf9945cd7b837b0c1d.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2831,"url":"https:\/\/taki-lab.site\/bocci\/?p=2831","url_meta":{"origin":2861,"position":1},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u7d75\u3092\u63cf\u753b\u3059\u308b\u30a8\u30ea\u30a2\u3092\u4f5c\u6210\u3059\u308b","author":"taki","date":"2020\u5e745\u67084\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2813 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/d018dd83dc1ed652b3b538e028af2d1a.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/d018dd83dc1ed652b3b538e028af2d1a.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/d018dd83dc1ed652b3b538e028af2d1a.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/d018dd83dc1ed652b3b538e028af2d1a.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2894,"url":"https:\/\/taki-lab.site\/bocci\/?p=2894","url_meta":{"origin":2861,"position":2},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30d1\u30ec\u30c3\u30c8\u304b\u3089\u6570\u5b57\u3092\u5165\u529b\u3059\u308b","author":"taki","date":"2020\u5e745\u67089\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2869 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2903,"url":"https:\/\/taki-lab.site\/bocci\/?p=2903","url_meta":{"origin":2861,"position":3},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u5b9f\u969b\u306b\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3059\u308b","author":"taki","date":"2020\u5e745\u670810\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2894 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2847,"url":"https:\/\/taki-lab.site\/bocci\/?p=2847","url_meta":{"origin":2861,"position":4},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010ALTSEED\u3011\u30b5\u30a4\u30ba\u5909\u66f4\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u5927\u5e45\u306b\u4fee\u6b63","author":"taki","date":"2020\u5e745\u67086\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2841 \u6700\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2813,"url":"https:\/\/taki-lab.site\/bocci\/?p=2813","url_meta":{"origin":2861,"position":5},"title":"\u3010C#\u3011\u3010\u30d4\u30af\u30ed\u30b9\u3011\u3010Altseed\u3011\u3068\u308a\u3042\u3048\u305a\u753b\u9762\u3092\u4f5c\u3063\u3066\u307f\u308b\u3002","author":"taki","date":"2020\u5e745\u67082\u65e5","format":false,"excerpt":"\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089\u3002 https:\/\/github.com\/takishita2nd\/Picross\u2026","rel":"","context":"C#","block_context":{"text":"C#","link":"https:\/\/taki-lab.site\/bocci\/?cat=174"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/4f811727105af15c7c29e64e7913e262.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/4f811727105af15c7c29e64e7913e262.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/4f811727105af15c7c29e64e7913e262.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/4f811727105af15c7c29e64e7913e262.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2861","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2861"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2861\/revisions"}],"predecessor-version":[{"id":2863,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/2861\/revisions\/2863"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2861"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2861"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2861"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}